-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 1.07 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
31
from setuptools import setup
setup(
name='exotic-ld',
version='3.2.1',
author='David Grant and Hannah R Wakeford',
author_email='[email protected]',
url='https://github.com/Exo-TiC/ExoTiC-LD',
license='MIT',
packages=['exotic_ld', 'grid_build.kd_trees'],
description='ExoTiC limb-darkening calculator',
long_description="Calculate limb-darkening coefficients for specific "
"instruments, stars, and wavelength ranges.",
python_requires='>=3.8.0',
install_requires=['scipy>=1.8.0', 'numpy', 'requests', 'tqdm'],
package_data={
'grid_build.kd_trees': ['*.pickle']
},
include_package_data=True,
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=True,
)