blob: 798cd051b315faa08a555bbffcafe463b8e5308c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
#!/usr/bin/env python
try:
    from setuptools import setup
except ImportError:
    from distribute_setup import use_setuptools
    use_setuptools()
    from setuptools import setup
setup(
    setup_requires=['d2to1>=0.2.5', 'stsci.distutils>=0.3.dev'],
    namespace_packages=['stsci'], packages=['stsci'],
    d2to1=True,
    use_2to3=True,
    zip_safe=False
)
#     package_data =   {'stsci.sphere.test': ['data/*.fits', 'data/*.fits.gz']},
  |