forked from ariley1472/refstis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 971 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import glob
setup(
name = 'refstis',
version = '0.5.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 = ['setuptools',
'pyyaml',
'numpy>=1.10',
'astropy>=1.0.1',
'stistools>=1.0.2'],
)