-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 1.25 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='supreme_spoon',
version='1.3.2',
license='MIT',
author='Michael Radica',
author_email='[email protected]',
packages=['supreme_spoon'],
include_package_data=True,
url='https://github.com/radicamc/supreme-spoon',
description='Tools for Reduction of NIRISS/SOSS TSOs',
package_data={'': ['README.md', 'LICENSE']},
install_requires=['applesoss==2.0.2', 'astropy', 'astroquery',
'bottleneck', 'corner', 'jwst==1.12.5', 'matplotlib',
'more_itertools', 'numpy', 'pandas', 'ray',
'scikit-learn', 'scipy', 'tqdm', 'pastasoss',
'pyyaml'],
extras_require={'stage4': ['supreme_spoon', 'cython', 'dynesty==1.2.2',
'exotic_ld', 'h5py', 'juliet'],
'webbpsf': ['supreme_spoon', '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',
],
)