-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
39 lines (35 loc) · 1.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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "osmdiff"
dynamic = ["version"]
authors = [{ name = "Martijn van Exel", email = "[email protected]" }]
maintainers = [{ name = "Martijn van Exel", email = "[email protected]" }]
description = "A read-only interface to OpenStreetMap change APIs and files"
keywords = ["openstreetmap", "osm", "diff", "changeset", "api"]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"python-dateutil>=2.9.0.post0",
"requests>=2.32.2",
]
license = { text = "MIT" }
[tool.pdm]
distribution = true
version = { source = "file", path = "src/osmdiff/__init__.py" }
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.1",
"typing-extensions>=4.12.0",
]
[project.urls]
"Homepage" = "https://github.com/mvexel/osmdiff"
"Bug Tracker" = "https://github.com/mvexel/osmdiff/issues"
[tool.pytest.ini_options]
markers = ["integration: mark a test as an integration test"]