Skip to content
Snippets Groups Projects
Select Git revision
  • fc0a104591da2ab2e426efbef95572bbadf40558
  • master default protected
  • dev protected
  • Issue/3003-stsInstitute
  • gitkeep
  • Issue/2449-GuidPidSlugToProjectSettings
  • Issue/2309-docs
  • Fix/xxxx-updateDependencies
  • Issue/2364-testingKpiParser
  • Issue/2287-guestRole
  • Test/xxxx-pipelineTriggers
  • Issue/2102-gitLabResTypeRCV
  • Issue/2278-gitlabToS
  • Issue/2101-gitLabResTypeUi
  • Issue/1788-extractionCronjob
  • Issue/2183-kpiGeneratorResource
  • Issue/2222-resourceDateCreated
  • Issue/2221-projectDateCreated
  • Issue/1321-pidEnquiryOverhaul
  • Issue/1999-gitlabResourcesLib
  • Issue/1951-quotaImplementation
  • v2.22.0
  • v2.20.0
  • v2.19.1
  • v2.19.0
  • v2.18.0
  • v2.17.0
  • v2.16.2
  • v2.16.1
  • v2.16.0
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.1
  • v2.12.0
  • v2.11.1
  • v2.11.0
  • v2.10.1
  • v2.10.0
  • v2.9.1
  • v2.9.0
41 results

ContactChangeModel.cs

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']
    )