forked from kevin218/Eureka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (36 loc) · 1.18 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
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
REQUIRES = ['batman-package',
'h5py',
'ipython',
'matplotlib',
'numpy>=1.20.0',
'pytest',
'pyyaml',
'scipy',
'jwst',
'pandas',
'bokeh',
'lmfit',
'svo_filters']
DEPENDENCY_LINKS = ['git+https://github.com/spacetelescope/jwst_gtvt.git@cd6bc76f66f478eafbcc71834d3e735c73e03ed5']
FILES = []
for root, _, files in os.walk("Eureka"):
FILES += [os.path.join(root.replace("Eureka/", ""), fname) \
for fname in files if not fname.endswith(".py") and not fname.endswith(".pyc")]
setup(name='Eureka',
version='0.0.1',
description='Lightcurve fitting package for time-series observations',
packages=find_packages(".", exclude=["*.tests"]),
package_data={'Eureka': FILES},
install_requires=REQUIRES,
dependency_links=DEPENDENCY_LINKS,
author='Section 5',
author_email='[email protected]',
license='MIT',
url='https://github.com/kevin218/Eureka',
long_description='',
zip_safe=True,
use_2to3=False
)