forked from spacetelescope/jwql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 1.49 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
import numpy as np
from setuptools import setup
from setuptools import find_packages
VERSION = '0.23.0'
AUTHORS = 'Matthew Bourque, Lauren Chambers, Misty Cracraft, Mike Engesser, Mees Fix, Joe Filippazzo, Bryan Hilbert, '
AUTHORS += 'Graham Kanarek, Teagan King, Catherine Martlin, Maria Pena-Guerrero, Johannes Sahlmann, Ben Sunnquist'
DESCRIPTION = 'The James Webb Space Telescope Quicklook Project'
DEPENDENCY_LINKS = ['git+https://github.com/spacetelescope/jwst#0.16.2',
'git+https://github.com/spacetelescope/jwst_reffiles'
]
REQUIRES = [
'asdf>=2.3.3',
'astropy>=3.2.1',
'astroquery>=0.3.9',
'authlib',
'bokeh>=1.0,<1.4',
'codecov',
'crds',
'django>=2.0',
'flake8',
'inflection',
'ipython',
'jinja2',
'jsonschema==2.6.0',
'jwedb>=0.0.3',
'matplotlib',
'nodejs',
'numpy',
'numpydoc',
'pandas',
'psycopg2',
'pysiaf',
'pytest',
'pytest-cov',
'scipy',
'sphinx',
'sqlalchemy',
'stsci_rtd_theme',
'twine'
]
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,
dependency_links=DEPENDENCY_LINKS,
include_package_data=True,
include_dirs=[np.get_include()],
)