1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), 'rb') as f:
long_description = f.read().decode('utf-8')
config = {
'name': 'PyMeeus',
'version': '0.4.3',
'description': 'Python implementation of Jean Meeus astronomical routines',
'long_description': long_description,
'keywords': 'Meeus astronomy module library',
'license': 'LGPLv3',
'author': 'Dagoberto Salazar',
'author_email': 'dagoberto.salazar@gmail.com',
'url': 'https://github.com/architest/pymeeus',
'download_url': 'https://github.com/architest/pymeeus',
# 'install_requires': ['nose', 'pypandoc'],
'packages': ['pymeeus'],
# 'scripts': ['example.py'],
'py_modules': ['base'],
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Astronomy'
]
}
setup(**config)
|