Skip to content
Snippets Groups Projects
Select Git revision
  • 88959801e5283a8c4f168093c62888f4d62986bc
  • master default
  • revert-a7058149
  • revert-f9b227e1
  • v1.5.0
  • v1.4.5
  • v1.4.4
  • v1.4.3
  • v1.4.2
  • v1.4.1
  • v1.4.0
  • v1.3.4
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.0
  • v1.0.0
21 results

setup.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 1.59 KiB
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    from setuptools import setup
    
    setup(
        name='astrotools',
        version='1.3.3',
        description='Python Astro Tools',
        long_description="""The astrotools documentation is provided http://astro.pages.rwth-aachen.de/astrotools/""",
        long_description_content_type='text/markdown',
        author='Martin Urban, David Walz, Marcus Wirtz',
        author_email='murban@physik.rwth-aachen.de, walz@physik.rwth-aachen.de, mwirtz@physik.rwth-aachen.de',
        license='MIT',
        keywords='astro auger',
        url='http://astro.pages.rwth-aachen.de/astrotools/',
        project_urls={
            'Documentation': 'http://astro.pages.rwth-aachen.de/astrotools/',
            'Source': 'https://git.rwth-aachen.de/astro/astrotools',
            'Tutorial': 'http://astro.pages.rwth-aachen.de/astrotools/tutorial.html'
            },
        packages=['astrotools'],
        package_data={'astrotools': ['data/*.txt', 'data/lnA/*', 'data/xmax/*', 'data/comp/*']},
        classifiers=[
            'Development Status :: 4 - Beta',
            # Indicate who your project is intended for
            'Intended Audience :: Developers',
            'Topic :: Software Development :: Build Tools',
            # Pick your license as you wish (should match "license" above)
            'License :: OSI Approved :: MIT License',
    
            # Specify the Python versions you support here. In particular, ensure
            # that you indicate whether you support Python 2, Python 3 or both.
            'Programming Language :: Python :: 2',
            'Programming Language :: Python :: 3',
            ],
        install_requires=['numpy', 'healpy', 'matplotlib', 'scipy']
    )