-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.59 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
[tool.poetry]
name = "skycalc-ipy"
version = "0.5.3a0"
description = "Get atmospheric spectral information from the ESO skycalc server."
license = "GPL-3.0-or-later"
authors = ["Kieran Leschinski <[email protected]>"]
maintainers = [
"Kieran Leschinski <[email protected]>",
"Hugo Buddelmeijer <[email protected]>",
"Fabian Haberhauer <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/AstarVienna/skycalc_ipy"
documentation = "https://skycalc-ipy.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"
astropy = "^6.0.1"
httpx = ">=0.26.0"
pyyaml = "^6.0.1"
astar-utils = ">=0.3.0"
synphot = { version = "^1.4.0", optional = true }
[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 = "^5.3.0"
sphinx-book-theme = "^1.1.0"
sphinxcontrib-apidoc = "^0.4.0"
numpydoc = "^1.6.0"
matplotlib = "^3.8.2"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/AstarVienna/skycalc_ipy/issues"
[tool.poetry.extras]
syn = ["synphot"]
[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 = ["skycalc_ipy/tests/*"]