forked from caracal-pipeline/stimela
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.41 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
44
45
46
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
import glob
requirements = ["pyyaml",
"nose>=1.3.7",
"future-fstrings",
"scabha >= 0.7.0",
## OMS: not a fan of this:
# @ git+https://github.com/caracal-pipeline/scabha2",
## ...because it interferes with running scabha2 off a dev branch (i.e. if you have a local dev install of scabha,
## pip install stimela will blow it away and replace with master branch...)
"ruamel.yaml",
"munch",
"omegaconf>=2.1pre1",
"click",
"pydantic",
"pathos",
"psutil",
"rich"
],
PACKAGE_NAME = "stimela"
__version__ = "2.0rc1"
setup(name=PACKAGE_NAME,
version=__version__,
description="Dockerized radio interferometry scripting framework",
author="Sphesihle Makhathini & RATT",
author_email="[email protected]",
url="https://github.com/ratt-ru/Stimela",
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=requirements,
entry_points="""
[console_scripts]
stimela = stimela.main:cli
""",
scripts=glob.glob("stimela/cargo/cab/stimela_runscript"),
classifiers=[],
)