-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 895 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
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
import sys
if sys.version_info < (3,0):
sys.exit('Sorry, Python < 3.0 is not supported')
setup(name='hessobs',
version='0.2.1',
description='Observation Scheduling and exploration for HESS',
url='',
author='Karl Kosack',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
install_requires=[
'astropy',
'pymysql',
'ephem',
'pandas',
'matplotlib',
'scipy',
'colorama',
'configobj',
'sqlalchemy'
],
scripts=[
'bin/hessobs-animate',
'bin/hessobs-ingestproposal',
'bin/hessobs-summary',
'bin/hessobs-verifyprop',
'bin/hessobs-visplot'
],
zip_safe=False,
package_data={'hessobs':['test/darkness2017.dat']}
)