-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.03 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.03 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
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==1.26.4', # for py310?
'numpy<2',
'pytest',
'codecov',
'coverage',
'pyyaml',
'scipy',
'etcd3',
'structlog',
'dsa110-pyutils',
'sigpyproc',
'slack',
'slackclient',
'tensorflow==2.11.0',
'psrqpy'
],
)