-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (92 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
103 lines (92 loc) · 1.96 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
[project]
name = "wfi_reference_pipeline"
description = "Reference file pipeline for the Roman WFI instrument."
requires-python = ">=3.12"
authors = [
{ name = "STScI" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"astropy>=7.0.0,<7.2.0",
"crds>=12.0.0",
"h5py",
"matplotlib>=3.10.0,<3.11.0",
"numpy>=2.1.0,<2.4.0",
"pandas>=2.2.1,<2.4.0",
"photutils>=2.3.0",
"psutil",
"pysiaf>=0.24.0,<0.25.0",
"PyYAML>=6.0.1,<6.1.0",
"requests>=2.32.0,<2.33.0",
"romancal>=0.22.0",
"scipy>=1.15.0,<1.17.0",
"soc_roman_tools>=0.1.0,<0.2.0",
"stpsf>=2.0.0,<2.2.0",
]
dynamic = [
"version",
]
[project.optional-dependencies]
docs = [
"sphinx",
"stsci_rtd_theme",
"sphinx_automodapi",
]
rtbdb = [
"rtb_db@git+https://grit.stsci.edu/roman/rtb-database"
]
test = [
"pytest-cov",
"pytest",
"ruff",
"pytest-mock"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
"Source Code" = "https://grit.stsci.edu/roman/wfi_reference_pipeline"
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
exclude = [
"doc",
"examples",
]
where = [
"src",
]
namespaces = false
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
"wfi_reference_pipeline.config" = [
"*.yaml",
"*.yml",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/wfi_reference_pipeline/version.py"
[tool.ruff.lint]
select = ["E", "F", "I", "N"]
ignore = ["E501"]
[tool.coverage.run]
source = ["wfi_reference_pipeline"]
omit = [
"**/__init__.py",
"**/tests/*",
"wfi_reference_pipeline/version.py",
]