-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (39 loc) · 1.24 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
40
41
42
43
#!/usr/bin/python3
"""
dias, a data integrity analysis system.
``dias`` lives on
`GitHub <https://github.com/chime-experiment/dias>`_.
"""
import os
import setuptools
import shutil
import sys
import versioneer
setuptools.setup(
name="dias",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="The CHIME Collaboration",
author_email="[email protected]",
description="CHIME data integrity automation system",
packages=["dias", "dias.analyzers", "dias.utils"],
scripts=["scripts/dias"],
install_requires=[
"chimedb.data_index @ git+https://github.com/chime-experiment/chimedb_di.git",
"chimedb.dataset @ git+https://github.com/chime-experiment/chimedb_dataset.git",
"caput @ git+https://github.com/radiocosmology/caput.git",
"draco @ git+https://github.com/radiocosmology/draco.git",
"ch_util @ git+https://github.com/chime-experiment/ch_util.git",
"prometheus_client>=0.5.0",
"bitshuffle @ git+https://github.com/kiyo-masui/bitshuffle.git",
"skyfield",
"pyyaml",
"scipy",
"msgpack",
"numpy",
"h5py",
"pywavelets",
],
license="GPL v3.0",
url="http://github.com/chime-experiment/dias",
)