|
16 | 16 |
|
17 | 17 | from setuptools import setup, find_packages |
18 | 18 |
|
19 | | -version = '2.0' |
| 19 | +from version import version |
20 | 20 |
|
21 | 21 | setup(name='PyTransit', |
22 | | - version=version, |
| 22 | + version=str(version), |
23 | 23 | description='Fast and painless exoplanet transit light curve modelling.', |
24 | 24 | author='Hannu Parviainen', |
25 | 25 | author_email='hpparvi@gmail.com', |
|
29 | 29 | 'pytransit.utils', 'pytransit.param', 'pytransit.contamination','pytransit.lpf', 'pytransit.lpf.tess', |
30 | 30 | 'pytransit.lpf.baselines'], |
31 | 31 | package_data={'':['*.cl'], 'pytransit.contamination':['data/*']}, |
32 | | - install_requires=["numpy", "numba", "scipy", "pandas", "xarray", "tables"], |
| 32 | + install_requires=["numpy", "numba", "scipy", "pandas", "xarray", "tables", "semantic_version"], |
33 | 33 | include_package_data=True, |
34 | 34 | license='GPLv2', |
35 | 35 | classifiers=[ |
|
40 | 40 | "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
41 | 41 | "Operating System :: OS Independent", |
42 | 42 | "Programming Language :: Python", |
43 | | - "Programming Language :: Fortran", |
44 | | - "Programming Language :: Other" |
45 | 43 | ], |
46 | 44 | keywords='astronomy astrophysics exoplanets' |
47 | 45 | ) |
0 commit comments