forked from spacetelescope/refstis
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 933 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 933 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import glob
setup(
name = 'refstis',
version = '0.6.1',
description = 'Pipeline to create STIS CCD superdarks and superbiases',
author = 'Justin Ely',
author_email = 'ely@stsci.edu',
packages = find_packages(),
keywords = ['astronomy'],
classifiers = ['Programming Language :: Python',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules'],
scripts = glob.glob('scripts/*'),
install_requires = ['pyyaml',
'numpy>=1.10',
'astropy>=1.0.1',
'stistools>=1.0.2'],
)