-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (103 loc) · 2.81 KB
/
Copy pathpyproject.toml
File metadata and controls
120 lines (103 loc) · 2.81 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[project]
name = "phangsPipeline"
dynamic = ["version"]
description = "PHANGS-ALMA Pipeline"
readme = "README.md"
requires-python = ">=3.12, <3.13"
license = {file = "LICENSE"}
authors = [
{name = "PHANGS Team"},
]
# Alphabetically
maintainers = [
{name = "Eric Koch", email = "koch.eric.w@gmail.com"},
{name = "Adam Leroy", email = "leroy.42@osu.edu"},
{name = "Daizhong Liu", email = "astro.dzliu@gmail.com"},
{name = "Erik Rosolowsky", email = "rosolowsky@ualberta.ca"},
{name = "Jiayi Sun", email = "astrojysun@outlook.com"},
{name = "Thomas Williams", email = "thomas.g.williams@manchester.ac.uk"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
# License
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"astropy >= 7.2.0",
"astroquery >= 0.4.11",
"matplotlib >= 3.10.9",
"numpy >= 2.3.5",
"protobuf == 3.20",
"pytz >= 2025.2",
"scipy >= 1.16.3",
"spectral-cube >= 0.6.7",
]
# Optional packages for CASA
[project.optional-dependencies]
casa = [
"casadata >= 2025.9.22",
"casaplotms >= 2.8.2",
"casarecipes >= 0.4.0",
"casashell >= 6.7.3.21",
"casatasks >= 6.7.3.21",
"casatools >= 6.7.3.21",
"casaviewer >= 2.4.4 ; platform_system != 'Darwin'",
"pipeline@git+https://open-bitbucket.nrao.edu/scm/pipe/pipeline.git",
]
# Optional packages for the test suite
test = [
"pytest-cov >= 7.1.0",
]
test-casa = [
"zenodo-get >= 3.0.0",
]
test-ruff = [
"ruff >= 0.15.10",
]
# Optional packages for documentation
docs = [
"myst-parser >= 5.1.0",
"sphinx >= 9.1.0",
"sphinx-automodapi >= 0.22.0",
"sphinx-rtd-theme >= 3.1.0",
]
[project.urls]
"Homepage" = "https://github.com/phangsTeam/phangs_imaging_scripts"
"Bug Reports" = "https://github.com/phangsTeam/phangs_imaging_scripts/issues"
"Source" = "https://github.com/phangsTeam/phangs_imaging_scripts"
[tool.setuptools.packages.find]
exclude = [
"phangs-alma_keys/*",
"scripts/*",
]
# Omit in coverage. Notably here, we exclude
# the CASA analysisutils
[tool.coverage.run]
omit = [
"docs/*",
"phangs-alma_keys/*",
"tests/*",
"*/analysis_scripts/*",
]
[tool.coverage.report]
exclude_lines = [
'except ImportError',
'except ModuleNotFoundError',
'except \(ImportError, ModuleNotFoundError\)',
'raise AssertionError',
'raise NotImplementedError',
]
[build-system]
requires = [
"setuptools >= 80.9.0",
"setuptools_scm >= 9.2.2",
"wheel >= 0.45.1",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# Configure custom options here (version schemes, file writing, etc.)
version_file = "phangsPipeline/version.py"