-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·49 lines (44 loc) · 964 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = """
astropy
colorlog
Jinja2
numpy>1.19.5,<2.0.0
psycopg2
python-casacore
python-dateutil
pytz
scipy
sqlalchemy<2
alembic
monotonic
psutil
pytest
dask
dask[array]
radio-pyse>=0.3.1
""".split()
tkp_scripts = [
"tkp/bin/pyse.py",
"tkp/bin/trap-manage.py",
"tkp/bin/tkp-inject.py",
]
package_data = {'tkp': [
'config/*/*',
'db/sql/statements/batch',
'db/sql/statements/*/*.sql'
]}
package_list = find_packages(where='.', exclude=['tests'])
setup(
name="tkp",
version="4.0",
packages=package_list,
scripts=tkp_scripts,
package_data=package_data,
description="LOFAR Transients Key Project (TKP)",
author="TKP Discovery WG",
author_email="discovery@transientskp.org",
url="http://docs.transientskp.org/",
install_requires=install_requires
)