-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
41 lines (35 loc) · 1.12 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
[tool.poetry]
name = "climatevision"
version = "2.1.0"
description = "LocalZero Climate Vision -- Calculation and basic infrastructure."
authors = ["Benedikt Grundmann <[email protected]>","Anja Höhne","Anne Klenge","Jan Kuhlem",
"Sebastian Lüttig","Silvan Ostheimer","Hauke Schmülling","Leon Schomburg <[email protected]>",
"Manfred Schüssler","Anne Schwob", "Eckhard Weißhaar","Jeniffer Wessel"]
packages = [
{ include = "climatevision", from="src" }
]
[tool.poetry.dependencies]
python = "^3.10"
jsonrpcserver = "^5.0.8"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
pre-commit = "^4.0.1"
black = "^22.3.0"
pytest-cov = "^6.0.0"
pyright = "^1.1.390"
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.2"
[tool.poetry.group.dev.dependencies]
black = {version = "^22.8.0", allow-prereleases = true}
openpyxl = "^3.0.10"
jupyter = "^1.0.0"
ipykernel = "^6.16.0"
pandas = "^2.2.3"
numpy = "^1.23.3"
[tool.pyright]
include = ["src", "commands", "tests"]
typeCheckingMode = "basic"
pythonVersion = "3.10"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"