-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
101 lines (96 loc) · 2.85 KB
/
pyproject.toml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "rapthor"
authors = [
{name = "David Rafferty", email = "[email protected]"},
{name = "Marcel Loose", email = "[email protected]"},
{name = "Andre Offringa", email = "[email protected]"},
{name = "Arend G. Dijkstra", email = "[email protected]"},
{name = "Tammo Jan Dijkema", email = "[email protected]"},
{name = "Mark de Wever", email = "[email protected]"},
{name = "Frits Sweijen", email = "[email protected]"},
{name = "Sarod Yatawatta", email = "[email protected]"},
]
description = "Rapthor: LOFAR DDE Pipeline"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astropy",
"bdsf",
"importlib-metadata; python_version<'3.8'",
"importlib-resources; python_version<'3.9'",
"jinja2",
"losoto>=2.4.3",
"lsmtool>=1.6",
"matplotlib",
"mocpy",
"numpy<2",
"python-casacore",
"python-dateutil",
"reproject",
"requests",
"Rtree",
"scipy",
"shapely",
"toil[cwl]>=5.10",
]
dynamic = ["version"]
[tool.setuptools]
# package-data is specified below in section [tool.setuptools.package-data]
include-package-data = false
packages = [
"rapthor",
"rapthor.lib",
"rapthor.operations",
]
script-files = [
"bin/concat_linc_files",
"bin/plotrapthor",
"bin/rapthor",
"rapthor/scripts/add_sector_models.py",
"rapthor/scripts/adjust_h5parm_sources.py",
"rapthor/scripts/blank_image.py",
"rapthor/scripts/calculate_image_diagnostics.py",
"rapthor/scripts/combine_h5parms.py",
"rapthor/scripts/concat_ms.py",
"rapthor/scripts/filter_skymodel.py",
"rapthor/scripts/make_aterm_images.py",
"rapthor/scripts/make_catalog_from_image_cube.py",
"rapthor/scripts/make_image_cube.py",
"rapthor/scripts/make_mosaic.py",
"rapthor/scripts/make_mosaic_template.py",
"rapthor/scripts/make_region_file.py",
"rapthor/scripts/mpi_runner.sh",
"rapthor/scripts/normalize_flux_scale.py",
"rapthor/scripts/process_gains.py",
"rapthor/scripts/regrid_image.py",
"rapthor/scripts/split_h5parms.py",
"rapthor/scripts/subtract_sector_models.py",
]
[tool.setuptools.package-data]
rapthor = [
"pipeline/**",
"scripts/*",
"settings/*",
"skymodels/*"
]
# [tool.setuptools.dynamic]
# version = {attr = "rapthor._version.__version__"}
[tool.setuptools_scm]
write_to = "rapthor/_version.py"