-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (22 loc) · 967 Bytes
/
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
from setuptools import setup
setup(name="geexhp",
version="1.0.0",
description="Generator of synthetic reflection spectra of Earth-like exoplanets observed \
by the Habitable Worlds Observatory (HaBex and LUVOIR B) using the Planetary Spectrum Generator",
long_description="ReadMe.md",
author="Sarah G. A. Barbosa",
author_email="sarahg.aroucha@gmail.com",
packages=["geexhp"],
install_requires=["numpy",
"matplotlib",
"smplotlib",
"pandas",
"astropy",
"fastparquet",
"PyQt5",
"tensorflow",
"scikit-learn"],
include_package_data=True,
package_data={'geexhp.resources': ['default_habex.txt'],
'geexhp.resources.atmos_layers': ['*.csv']},
zip_safe = False)