-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
80 lines (67 loc) · 2.22 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
[tool.poetry]
name = "speXtra"
version = "0.41.4a0"
description = "Tool to manage and manipulate astronomical spectra."
license = "MIT"
authors = ["Miguel Verdugo <[email protected]>"]
maintainers = [
"Kieran Leschinski <[email protected]>",
"Hugo Buddelmeijer <[email protected]>",
"Fabian Haberhauer <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/AstarVienna/speXtra"
documentation = "https://spextra.readthedocs.io/en/latest/"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.3"
scipy = "^1.14.1"
astropy = "^6.0.1"
synphot = "^1.4.0"
pyyaml = "^6.0.1"
pooch = "^1.8.2"
tqdm = "^4.66.1"
more-itertools = "^10.2.0"
astar-utils = ">=0.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
matplotlib = "^3.8.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.0.0"
sphinx-book-theme = "^1.1.0"
sphinxcontrib-apidoc = "^0.4.0"
sphinx-copybutton = "^0.5.2"
myst-nb = "^1.0.0"
numpydoc = "^1.6.0"
matplotlib = "^3.8.2"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/AstarVienna/speXtra/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"webtest: marks tests as requiring network (deselect with '-m \"not webtest\"')",
]
filterwarnings = [
"error",
# Should certainly be fixed:
# https://github.com/AstarVienna/speXtra/issues/61
"ignore:The 'name plus file extension' property*:PendingDeprecationWarning",
# https://github.com/AstarVienna/speXtra/issues/62
'default:"wave_unit" was deprecated in version 1.4 and will be removed in a future version.:astropy.utils.exceptions.AstropyDeprecationWarning',
'default:"flux_unit" was deprecated in version 1.4 and will be removed in a future version.:astropy.utils.exceptions.AstropyDeprecationWarning',
# Should probably be fixed:
"default:unclosed file <_io.BufferedReader name=:ResourceWarning",
]
[tool.coverage.report]
omit = ["spextra/tests/*"]