-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
60 lines (52 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "openeo-pg-parser-networkx"
version = "2024.10.1"
description = "Parse OpenEO process graphs from JSON to traversible Python objects."
authors = ["Lukas Weidenholzer <[email protected]>", "Sean Hoyal <[email protected]>", "Valentina Hutter <[email protected]>", "Gerald Irsiegler <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/Open-EO/openeo-pg-parser-networkx"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "openeo_pg_parser_networkx" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
pydantic = "^2.4.0"
pyproj = "^3.4.0"
networkx = "^2.8.6"
shapely = ">=1.8"
geojson-pydantic = "^1.0.0"
numpy = "^1.20.3"
pendulum = "^2.1.2"
matplotlib = { version = "^3.7.1", optional = true }
traitlets = "<=5.9.0"
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.7.1"
pytest = "^7.1.3"
ipykernel = "^6.13.0"
black = "^22.3.0"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest-cov = "^4.0.0"
[tool.poetry.extras]
plot = ["matplotlib"]
[tool.black]
skip-string-normalization = true
line-length = 90
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"