-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
75 lines (63 loc) · 1.79 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
[tool.poetry]
name = "ScopeSim_Templates"
version = "0.6.2a0"
description = "On-sky source templates for ScopeSim"
authors = ["Astar Vienna <astar.astro@univie.ac.at>"]
license = "GPL-3.0-or-later"
readme = "README.md"
maintainers = [
"Kieran Leschinski <kieran.leschinski@unive.ac.at>",
"Hugo Buddelmeijer <hugo@buddelmeijer.nl>",
"Fabian Haberhauer <fabian.haberhauer@univie.ac.at>",
]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
repository = "https://github.com/AstarVienna/ScopeSim_Templates/"
documentation = "https://scopesim-templates.readthedocs.io/"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
numpy = "^1.26.3"
scipy = "^1.14.1"
astropy = "^6.0.1"
matplotlib = "^3.8.2"
docutils = "^0.19"
beautifulsoup4 = "^4.12.1"
lxml = "^5.2.2"
pyyaml = "^6.0.1"
synphot = "^1.4.0"
scopesim = ">=0.9.1"
pyckles = ">=0.4.0"
spextra = ">=0.41.3"
astar-utils = ">=0.3.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0"
jupytext = "^1.10.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
sphinx-rtd-theme = "^0.5.1"
skycalc_cli = "*" # consider removal
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.0.0"
sphinx-book-theme = "^1.1.3"
sphinx-copybutton = "^0.5.2"
myst-nb = "^1.0.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/AstarVienna/ScopeSim_Templates/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\"')",
]
[tool.coverage.report]
omit = ["scopesim_templates/tests/*"]