-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (33 loc) · 973 Bytes
/
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
[tool.poetry]
name = "METIS_Simulations"
version = "0.1.0a"
description = "METIS Simulations for ESO"
license = "GPL-3.0-or-later"
authors = ["Jennifer Karr <[email protected]>"]
maintainers = [
"Jennifer Karr <[email protected]>",
"Hugo Buddelmeijer <[email protected]>",
"Fabian Haberhauer <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/AstarVienna/METIS_Simulations"
documentation = "https://scopesim.readthedocs.io/en/latest/"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
]
packages = [
{ include = "ESO" }
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.26.3"
astropy = "^6.0.0"
matplotlib = "^3.7.2"
ScopeSim = ">=0.9.0"
ScopeSim_Templates = "^0.5.2"
astar-utils = ">=0.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"