-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.19 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
# SPDX-FileCopyrightText: Contributors to the utility-route-project and Alliander N.V.
#
# SPDX-License-Identifier: Apache-2.0
[project]
name = "utility_route_planner"
version = "0.2.0"
description = ""
authors = [
{ name = "Jelmar Versleijen", email = "<jelmar.versleijen@alliander.com>" },
{ name = "Djesse Dirckx", email = "<djesse.dirckx@alliander.com>" },
]
requires-python = "~=3.12"
readme = "README.md"
dependencies = [
"geopandas (>=1.0.1,<2.0.0)",
"structlog (>=25.1.0,<26.0.0)",
"scikit-image (>=0.25.1,<0.26.0)",
"pytest (>=8.3.4,<9.0.0)",
"networkx (>=3.4.2,<4.0.0)",
"cairocffi (>=1.7.1,<2.0.0)",
"matplotlib (>=3.10.0,<4.0.0)",
"osmnx (>=2.0.1,<3.0.0)",
"pydantic (>=2.10.6,<3.0.0)",
"pyogrio (>=0.10.0,<0.11.0)",
"rasterio (>=1.4.3,<2.0.0)",
"fiona (>=1.10.1,<2.0.0)",
]
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.linting.dependencies]
pre-commit = "^4.1.0"
mypy = "^1.14.1"
types-pyyaml = "^6.0.12"
types-requests = "^2.28.11.2"
ruff = "^0.9.3"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.pytest.ini_options]
log_cli = true