-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 817 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 817 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
27
#!/usr/bin/env python
from setuptools import setup
try:
from testr.setup_helper import cmdclass
except ImportError:
cmdclass = {}
setup(name='acispy',
packages=['acispy'],
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
description='Python tools for ACIS Ops',
author='John ZuHone',
author_email='john.zuhone@cfa.harvard.edu',
url='http://github.com/acisops/acispy',
install_requires=["numpy>=1.12.1","requests","astropy"],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
include_package_data=True,
tests_require=["pytest"],
zip_safe=False,
cmdclass=cmdclass,
)