-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.21 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "fdsvismap"
version = "0.2.1"
requires-python = ">=3.11"
description = "Tool for waypoint-based verification of visibility in the scope of performance-based fire safety assessment."
authors = [
{name = "Kristian Börger", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy>=2.1,<3.0",
"matplotlib~=3.10,<4.0",
"scikit-image ~= 0.23.2",
"fdsreader ~= 1.11.5",
]
[project.optional-dependencies]
docs = [
"sphinx >= 7.2.6",
"sphinx-rtd-theme >= 2.0.0",
"sphinx-copybutton",
]
[project.urls]
"Homepage" = "https://firedynamics.github.io/fdsvismap/"
"Documentation" = "https://firedynamics.github.io/fdsvismap/"
"Repository" = "https://github.com/FireDynamics/fdsvismap"
"Bug Tracker" = "https://github.com/FireDynamics/fdsvismap/issues"
[dependency-groups]
dev = [
"mypy>=1.18.2",
"pre-commit>=4.4.0",
"ruff>=0.14.3",
"pytest>=8.4.2",
"sphinx >= 7.2.6",
"sphinx-rtd-theme >= 2.0.0",
"sphinx-copybutton",
]