-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (26 loc) · 867 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
"""Setup script for the gtecs-alert package."""
import glob
from setuptools import setup, find_namespace_packages
REQUIRES = ['numpy',
'astropy',
'astroplan',
'astroquery',
'pygcn>=1.1.1',
'hop-client>=0.9.0',
'voeventdb.remote',
'pandas',
'requests',
'setuptools',
]
setup(name='gtecs-alert',
version='0',
description='G-TeCS functions for handling transient alerts',
url='http://github.com/GOTO/goto-alert',
author='Martin Dyer',
author_email='martin.dyer@sheffield.ac.uk',
install_requires=REQUIRES,
packages=find_namespace_packages(include=['gtecs*']),
package_data={'gtecs': ['alert/data/*', 'alert/data/test_notices/*']},
scripts=glob.glob('scripts/*'),
zip_safe=False,
)