forked from ThomasSYLai/CAFE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 719 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (27 loc) · 719 Bytes
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
from setuptools import setup, find_packages
setup(
name='CAFE',
version='1.0.1',
url='',
author='Thomas Lai, Tanio Diaz-Santos, Luke Finnerty, and the GOALS Team',
author_email='goals.lirg.survey',
license='GPL-3',
long_description='Astronomical spectroscopy decomposition.',
packages=find_packages(),
include_package_data = True,
data_files=[
('./CAFE', []),
('./CRETA/data', []),
],
install_requires=[
'astropy>=4.3.1',
'lmfit>=1.0.3',
'matplotlib>=3.5.1',
'numpy>=1.21.5',
'pandas>=1.3.5',
'photutils>=1.5.0',
'scipy>=1.7.3',
'specutils>1.7.0',
'ipykernel>6.9.1'
]
)