forked from dsa110/dsa110-T3
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 991 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 991 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
28
29
30
31
from setuptools import setup
from dsautils.version import get_git_version
setup(name='dsa110-T3',
version=get_git_version(),
url='http://github.com/dsa110/dsa110-T3/',
author='DSA-110 Team',
author_email='',
packages=['dsaT3'],
package_data={'dsaT3':['data/*']},
install_requires=['astropy',
'casatools',
'casatasks',
'casadata',
'matplotlib',
'numpy',
'pytest',
'codecov',
'coverage',
'pyyaml',
'scipy',
'etcd3',
'structlog',
'dsa110-pyutils',
'sigpyproc',
'slack',
'slackclient',
'tensorflow',
'psrqpy'
],
)