forked from radicamc/exoTEDRF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.18 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.18 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='exotedrf',
version='2.4.1',
license='MIT',
author='Michael Radica',
author_email='radicamc@uchicago.edu',
packages=['exotedrf'],
include_package_data=True,
url='https://github.com/radicamc/exoTEDRF',
description='Tools for Reduction of JWST TSOs',
package_data={'': ['README.md', 'LICENSE']},
install_requires=['applesoss==2.1.0', 'astropy', 'astroquery', 'bottleneck', 'crds==12.1.11',
'corner', 'jwst==1.17.1', 'matplotlib', 'more_itertools', 'numpy==1.24.4',
'pandas', 'ray', 'scikit-learn', 'scipy', 'spectres', 'requests', 'tqdm',
'pastasoss', 'pyyaml'],
extras_require={'stage4': ['exotedrf', 'exouprf==1.1.1', 'exotic_ld', 'h5py'],
'webbpsf': ['exotedrf', 'webbpsf>=1.1.1']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
],
)