-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.33 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.33 KB
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
from setuptools import setup
from dsautils.version import get_git_version
setup(name='dsa110-calib',
version=get_git_version(),
url='http://github.com/dsa110/dsa110-calib/',
author='Dana Simard',
author_email='dana.simard@astro.caltech.edu',
packages=['dsacalib'],
package_data={'dsacalib':['data/*',
'data/template_gcal_ant/*',
'data/template_gcal_ant/ANTENNA/*',
'data/template_gcal_ant/FIELD/*',
'data/template_gcal_ant/HISTORY/*',
'data/template_gcal_ant/OBSERVATION/*',
'data/template_gcal_ant/SPECTRAL_WINDOW/*'
]},
install_requires=['astropy',
'casatools',
'casatasks',
'casadata',
'cython',
'h5py',
'matplotlib',
'numba',
'numpy',
'pandas',
'pytest',
'codecov',
'coverage',
'pyyaml',
'scipy',
'etcd3',
'structlog',
],
)