-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (72 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "brdr"
version = "0.5.0"
description = "BRDR - a Python library to assist in realigning (multi-)polygons (OGC Simple Features) to reference borders "
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Karel Dieussaert", email = "[email protected]" },
{ name = "Emrys Roef", email = "[email protected]" },
]
maintainers = [
{ name = "Emrys Roef", email = "[email protected]" },
{ name = "Koen Van Daele", email = "[email protected]" },
{ name = "Vermeyen Maerten", email = "[email protected]" }
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"geojson~=3.1",
"requests~=2.32",
"shapely~=2.0",
]
[project.urls]
Documentation = "https://github.com/OnroerendErfgoed/brdr/blob/main/README.md"
Repository = "https://github.com/OnroerendErfgoed/brdr"
Issues = "https://github.com/OnroerendErfgoed/brdr/issues"
[project.optional-dependencies]
test = [
"pytest-cov==6.0.0",
"pytest==8.3.3",
"responses==0.25.3",
"toml==0.10.2",
]
dev = [
"brdr[test]",
"black==24.10.0",
"flake8==7.1.1",
"geopandas==1.0.1",
"hatchling==1.26.1",
"matplotlib==3.8.4",
"mypy==1.13.0",
"pip-tools==7.4.1",
"types-requests==2.31.0.20240406",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
packages = ["brdr"]
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312']
# Config for hatch environments
[tool.hatch.envs.dev]
features = [
'dev',
]
# Config for hatch test
[tool.hatch.envs.hatch-test]
features = [
'test',
]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.9", "3.10", '3.11', '3.12']