forked from hpparvi/PyTransit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.32 KB
/
setup.py
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
from setuptools import setup, find_packages
version = '2.0'
setup(name='PyTransit',
version=version,
description='Fast and painless exoplanet transit light curve modelling.',
author='Hannu Parviainen',
author_email='[email protected]',
url='https://github.com/hpparvi/PyTransit',
package_dir={'pytransit':'src'},
packages=['pytransit', 'pytransit.models', 'pytransit.models.numba', 'pytransit.models.opencl', 'pytransit.orbits',
'pytransit.utils', 'pytransit.param', 'pytransit.contamination','pytransit.lpf', 'pytransit.lpf.baselines'],
package_data={'':['*.cl'], 'pytransit.contamination':['data/*']},
install_requires=["numpy", "numba", "scipy", "pandas", "xarray", "tables"],
include_package_data=True,
license='GPLv2',
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Fortran",
"Programming Language :: Other"
],
keywords='astronomy astrophysics exoplanets'
)