-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.04 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
[tool.poetry]
name = "nfem"
version = "4.0.0-dev"
description = "NFEM Teaching Tool"
authors = [
"Thomas Oberbichler <thomas.oberbichler@tum.de>",
"Armin Geiser <armin.geiser@tum.de>",
"Klaus Sautter <kb.sautter@tum.de>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/StatikTUM/nfem"
[tool.poetry.dependencies]
python = "^3.7"
notebook = [
{ version = "^5.3", python = "<3.8" },
{ version = "^6.4", python = ">=3.8" },
]
numpy = [
{ version = "^1.20", python = "<3.10" },
{ version = "^1.22", python = ">=3.10" },
]
plotly = "^5.5.0"
scipy = [
{ version = "^1.4", python = "<3.10" },
{ version = "^1.7.2", python = ">=3.10,<3.11" },
]
importlib-metadata = { version = "^4.11", python = "<3.8" }
typing-extensions = "*"
[tool.poetry.extras]
qt = ["PyQt6-WebEngine"]
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
mypy = "^0.931"
toml = "^0.10.2"
autopep8 = "^1.6.0"
pydoctest = "^0.1.15"
pydocstyle = "^6.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"