-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
62 lines (56 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
import pfb
with open("README.rst", "r") as fh:
long_description = fh.read()
requirements = [
'numpy <= 2.0.0',
'scikit-image',
'PyWavelets',
'katbeam',
'numexpr',
'pyscilog >= 0.1.2',
'Click',
"ducc0"
"@git+https://github.com/mreineck/ducc.git"
"@ducc0",
"sympy",
"stimela"
"@git+https://github.com/caracal-pipeline/stimela.git"
"@clickify_missing_as_none",
"streamjoy >= 0.0.8",
"codex-africanus[complete] >= 0.3.7",
"dask-ms[xarray, zarr, s3]",
"tbb",
"jax[cpu]",
"lz4",
"ipdb",
"psutil",
"bokeh < 3.0.0",
"regions"
]
setup(
name='pfb-imaging',
version=pfb.__version__,
author="Landman Bester",
author_email="[email protected]",
description="Radio interferometric imaging suite base on the pre-conditioned forward-backward algorithm",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ratt-ru/pfb-imaging",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.9',
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Astronomy",
],
entry_points={'console_scripts':[
'pfb = pfb.workers.main:cli'
]
}
,
)