forked from architest/pymeeus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.55 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.55 KB
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
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')) as f:
long_description = f.read()
config = {
'name': 'pyplanets',
'version': '0.4.2',
'description': 'PyPlanets: Object-oriented refactoring of PyMeeus, a Python library '
'implementing astronomical algorithms.',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'keywords': 'astronomy planets ephemeris Meeus VSOP87 module library',
'license': 'LGPLv3',
'author': 'Martin Fünffinger',
'author_email': 'martinfl633@gmail.com',
'url': 'https://github.com/martin5f/pyplanets',
'download_url': 'https://github.com/martin5f/pyplanets',
# 'install_requires': ['nose', 'pypandoc'],
'packages': ['pyplanets', 'pyplanets.core', 'pyplanets.parameters', 'pyplanets.planets'],
# '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 :: 3',
'Topic :: Scientific/Engineering :: Astronomy'
]
}
setup(**config)