-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1.06 KB
/
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
36
37
38
39
#!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = ['nose', 'asynctest', 'async_timeout', 'katsdpsigproc[test]']
setup(
name="katsdpingest",
description="Karoo Array Telescope Data Capture",
author="MeerKAT SDP Team",
author_email="sdpdev+katsdpingest@ska.ac.za",
packages=find_packages(),
package_data={'': ['ingest_kernels/*.mako']},
include_package_data=True,
scripts=[
"scripts/ingest.py",
"scripts/ingest_autotune.py"
],
setup_requires=['katversion'],
install_requires=[
'aiokatcp>=0.7.0', # Need 0.7 for auto_strategy
'aiomonitor',
'numpy>=1.13.0', # For np.unique with axis (might really need a higher version)
'spead2>=3.0.1',
'katsdpsigproc',
'katsdpservices[argparse,aiomonitor]',
'katsdptelstate[aio]',
'katpoint',
'katdal',
'katsdpmodels[aiohttp]'
],
extras_require={
'test': tests_require
},
tests_require=tests_require,
zip_safe=False,
use_katversion=True
)