forked from hotosm/osm-fieldwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (64 loc) · 1.62 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
[project]
name = "osm-fieldwork"
dynamic = ["version"]
description = "Convert CSV files from ODK Central to OSM format."
authors = [
{name = "Rob Savoye", email = "[email protected]"},
]
dependencies = [
"codetiming>=1.4.0",
"epdb>=0.15.1",
"geodex>=0.1.2",
"geojson>=2.5.0",
"OSMPythonTools>=0.3.5",
"progress>=1.6",
"pymbtiles>=0.5.0",
"PyYAML>=6.0",
"qrcode>=7.4.2",
"requests>=2.28.2",
"segno>=1.5.2",
"xmltodict>=0.13.0",
"shapely>=1.8.5",
"overpy>=0.6",
]
requires-python = ">=3.9"
readme = "README.md"
license = "GPL-3.0-only"
keywords = ["fmtm", "odk", "hot", "openstreetmap", "opendatakit"]
classifiers = [
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[project.urls]
homepage = "https://github.com/hotosm/osm-fieldwork/wiki"
documentation = "https://github.com/hotosm/osm-fieldwork/wiki"
repository = "https://github.com/hotosm/osm-fieldwork"
[project.optional-dependencies]
[tool.pdm]
version = {from = "osm_fieldwork/__version__.py"}
[tool.pdm.build]
includes = ["osm_fieldwork"]
source-includes = ["tests", "LICENSE.md", "README.md"]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.2.1",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]
pythonpath = "osm_fieldwork"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.1"
version_files = [
"pyproject.toml:version",
"osm-fieldwork/__version__.py",
"Makefile:VERSION",
]