forked from spacetelescope/stginga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (31 loc) · 1.08 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
#! /usr/bin/env python
#
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'stginga',
version = '0.1.0.dev0',
provides = ['stginga'],
packages = find_packages(),
package_data = {'stginga': ['data/*', 'examples/*/*']},
scripts = ['scripts/stginga'],
author = 'STScI',
author_email = '[email protected]',
url = "https://github.com/spacetelescope/stginga",
description = 'Ginga products specific to STScI data analysis',
long_description = 'Ginga products specific to STScI data analysis',
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'],
zip_safe=False,
use_2to3=True,
install_requires=['astropy>=1.0', 'ginga']
)