forked from ratt-ru/Stimela-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.22 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
#!/usr/bin/env python
import os
from setuptools import setup
PACKAGE_NAME = "stimela"
__version__ = "1.0.3"
setup(name = PACKAGE_NAME,
version = __version__,
description = "Dockerized radio interferometry scripting framework",
author = "Sphesihle Makhathini",
author_email = "[email protected]",
url = "https://github.com/sphemakh/Stimela",
packages = ["stimela","stimela_misc", "stimela/cargo","stimela/utils", "stimela/cargo/cab"],
package_data = { "stimela/cargo" : [
"cab/*/Dockerfile",
"base/*/Dockerfile",
"cab/*/src/*.py",
"cab/*/src/*.sh",
"cab/*/src/*.json",
"cab/*/xvfb.init.d",
"cab/*/parameters.json",
"cab/*/src/tdlconf.profiles",
"cab/singularity_run",
]},
install_requires = ["pyyaml",
"nose>=1.3.7",
"future"],
scripts = ["bin/" + i for i in os.listdir("bin")],
classifiers = [],
)