forked from spacetelescope/crds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
204 lines (194 loc) · 3.89 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
[project]
name = "crds"
version = "12.0.0"
description = "Calibration Reference Data System, HST/JWST/Roman reference file management"
authors = [{ name = "STScI CRDS s/w developers" }]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astropy",
"numpy<2",
"filelock",
"asdf != 3.0.0",
"requests",
"parsley",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.license]
file = "LICENSE"
content-type = "text/plain"
[project.urls]
homepage = "https://github.com/spacetelescope/crds"
[project.optional-dependencies]
jwst = ["jwst"]
roman = ["roman_datamodels"]
submission = ["requests", "parsley"]
dev = ["ipython", "jupyterlab", "ansible", "helm"]
test = [
"lockfile",
"mock",
"pylint",
"flake8",
"bandit",
"metrics-logger",
"pytest >= 6.0",
"pytest-astropy",
"pytest-doctestplus>=0.10.0",
"pytest-cov",
"pytest-profiling",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"docutils",
"sphinx_automodapi",
"sphinx-tabs",
]
aws = ["boto3", "awscli"]
synphot = ["stsynphot", "pysynphot"]
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["Linux", "OS-X"]
zip-safe = false
packages = [
"crds",
"crds.bestrefs",
"crds.certify",
"crds.certify.validators",
"crds.client",
"crds.core",
"crds.io",
"crds.submit",
"crds.misc",
"crds.misc.synphot",
"crds.refactoring",
"crds.hst",
"crds.jwst",
"crds.tobs",
"crds.roman",
"crds.ligeriri",
]
include-package-data = false
[tool.setuptools.package-dir]
crds = "crds"
"crds.bestrefs" = "crds/bestrefs"
"crds.certify" = "crds/certify"
"crds.certify.validators" = "crds/certify/validators"
"crds.client" = "crds/client"
"crds.core" = "crds/core"
"crds.io" = "crds/io"
"crds.submit" = "crds/submit"
"crds.misc" = "crds/misc"
"crds.misc.synphot" = "crds/misc/synphot"
"crds.refactoring" = "crds/refactoring"
"crds.hst" = "crds/hst"
"crds.jwst" = "crds/jwst"
"crds.roman" = "crds/roman"
"crds.tobs" = "crds/tobs"
"crds.ligeriri" = "crds/ligeriri"
[tool.setuptools.package-data]
"crds.hst" = [
"*.dat",
"*.yaml",
"*.json",
"tpns/*.tpn",
"tpns/includes/*.tpn",
"specs/*.spec",
"specs/*.rmap",
"specs/*.json",
]
"crds.jwst" = [
"*.dat",
"*.yaml",
"*.json",
"tpns/*.tpn",
"tpns/includes/*.tpn",
"specs/*.spec",
"specs/*.rmap",
"specs/*.json",
]
"crds.roman" = [
"*.dat",
"*.yaml",
"*.json",
"tpns/*.tpn",
"tpns/includes/*.tpn",
"specs/*.spec",
"specs/*.rmap",
"specs/*.json",
]
"crds.tobs" = [
"*.dat",
"*.yaml",
"*.json",
"tpns/*.tpn",
"tpns/includes/*.tpn",
"specs/*.spec",
"specs/*.rmap",
"specs/*.json",
]
"crds.ligeriri" = [
"*.dat",
"*.yaml",
"*.json",
"tpns/*.tpn",
"tpns/includes/*.tpn",
"specs/*.spec",
"specs/*.rmap",
"specs/*.json",
]
[tool.pytest.ini_options]
python_files = ["test_*"]
python_classes = ["Test*"]
python_functions = ["test_*"]
markers = [
"smoke: critical tests required to pass for the system to work.",
"asdf: asdf related tests",
"bad_files",
"bestrefs",
"build6",
"certify",
"checksum",
"cmdline",
"core: tests in the crds.core module",
"distortion: all tests related to distortion filetype",
"diff",
"factory",
"heavy_client",
"hst",
"io",
"jwst",
"list",
"locking",
"matches",
"misc",
"multimission",
"newcontext",
"or_bars",
"refactor",
"refactoring: tests in the crds.refactoring module",
"reftypes",
"rmap",
"roman: all tests specific to the ROMAN Space Telescope mission",
"rowdiff",
"selectors",
"special",
"submit",
"substitutions",
"sync",
"synphot",
"tables",
"table_effects",
"uniqname",
"uses",
]