forked from spacetelescope/jwst_reffiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·47 lines (45 loc) · 1.39 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='jwst_reffiles',
version='0.0.0',
description='Create JWST reference files',
long_description=('A tool to create CRDS-formatted reference files'
'for JWST from a set of input dark current files'
'and a set of flat field files.'),
author='STScI (Rest, Hilbert, Canipe, et al.)',
author_email='[email protected]',
url='https://github.com/spacetelescope/jwst_reffiles',
license="BSD-3-Clause",
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(),
include_package_data=True,
package_data={'jwst_reffiles': ['bad_pixel_mask/*.txt']
},
scripts=["jwst_reffiles/mkrefs.py"],
install_requires=[
'astropy>=4.0',
'jwst',
'numpy>=1.16',
'matplotlib>=1.4.3',
'scipy>=1.1',
],
extras_require=dict(
docs=[
"nbsphinx",
"ipykernel",
"sphinx",
"sphinx_rtd_theme",
],
test=[
"pytest",
]
),
)