-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
45 lines (43 loc) · 1.22 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
from setuptools import setup, find_packages
import versioneer
import glob
NAME = 'obztak'
CLASSIFIERS = """\
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
Intended Audience :: Developers
Programming Language :: Python
Natural Language :: English
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Astronomy
Operating System :: MacOS
Operating System :: POSIX
License :: OSI Approved :: MIT License
"""
URL = 'https://github.com/obztak/%s'%NAME
DESC = "Bizarro observation tactician for DECam"
LONG_DESC = "See %s"%URL
setup(
name=NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url=URL,
author='Alex Drlica-Wagner',
author_email='[email protected]',
scripts = glob.glob('bin/*'),
install_requires=[
'numpy >= 1.7',
'scipy >= 0.10.1',
'matplotlib >= 1.2.0',
'basemap >= 1.0.6',
'pandas >= 0.8.1',
'setuptools',
],
packages=find_packages(),
package_data={'obztak':['data/*.dat','data/*.txt','data/*.csv']},
description=DESC,
long_description=LONG_DESC,
platforms='any',
classifiers = [_f for _f in CLASSIFIERS.split('\n') if _f]
)