-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.77 KB
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
[tool.poetry]
name = "openterrace"
description = "OpenTerrace: A fast, flexible and extendable Python framework for packed bed thermal energy storage simulations"
version = "0.0.0" # This will be overwritten by the dynamic versioning by Poetry
authors = [
"Jakob Hærvig"
]
maintainers = [
"Jakob Hærvig <jakob.haervig@gmail.com>"
]
readme = "README.md"
license = "MIT"
packages = [
{ include = "openterrace"}
]
keywords = [
"Thermal energy storage",
"Packed bed",
"Simulation",
"Heat transfer",
"Phase change material",
"PCM",
"Python"
]
classifiers = [
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: Implementation :: PyPy"
]
repository = "https://github.com/OpenTerrace/openterrace-python"
documentation = "https://openterrace.github.io/openterrace-python/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/OpenTerrace/openterrace-python/issues"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
format = "v{base}"
latest-tag = true
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.26.4"
numba = "^0.59.0"
scipy = "^1.12.0"
matplotlib = "^3.8.3"
tqdm = "^4.66.2"
pytest-xdist = "^3.5.0"
# Only used for documentation
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.5.12"
mkdocstrings-python = "^1.8.0"
markdown-katex = "^202112.1034"
pytkdocs = "^0.16.1"
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"