forked from spacetelescope/jwql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (59 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import numpy as np
from setuptools import setup
from setuptools import find_packages
VERSION = '1.1.1'
AUTHORS = 'Matthew Bourque, Lauren Chambers, Misty Cracraft, Mike Engesser, Mees Fix, Joe Filippazzo, Bryan Hilbert, '
AUTHORS += 'Graham Kanarek, Teagan King, Catherine Martlin, Shannon Osborne, Maria Pena-Guerrero, Johannes Sahlmann, '
AUTHORS += 'Ben Sunnquist, Brian York'
DESCRIPTION = 'The James Webb Space Telescope Quicklook Project'
REQUIRES = [
'asdf>=2.3.3',
'astropy>=3.2.1',
'astroquery>=0.3.9',
'bandit',
'bokeh',
'codecov',
'crds',
'cryptography',
'django<=3.1.7',
'flake8',
'inflection',
'ipython',
'jinja2',
'jsonschema',
'jwedb>=0.0.3',
'jwst',
'jwst_reffiles',
'matplotlib',
'nodejs',
'numpy',
'numpydoc',
'pandas',
'psycopg2',
'pysiaf',
'pytest',
'pytest-cov',
'scipy',
'sphinx',
'sphinx_rtd_theme',
'sqlalchemy',
'stdatamodels',
'stsci_rtd_theme',
'twine',
'wtforms'
]
setup(
name='jwql',
version=VERSION,
description=DESCRIPTION,
url='https://github.com/spacetelescope/jwql.git',
author=AUTHORS,
author_email='[email protected]',
license='BSD',
keywords=['astronomy', 'python'],
classifiers=['Programming Language :: Python'],
packages=find_packages(),
install_requires=REQUIRES,
include_package_data=True,
include_dirs=[np.get_include()],
)