-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.57 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
[project]
name = "geojson-aoi-parser"
version = "0.2.0"
description = "Parse and normalize a GeoJSON area of interest, using PostGIS."
authors = [
{name = "Sam Woodcock", email = "[email protected]"},
]
readme = "README.md"
license = {text = "GPL-3.0-only"}
requires-python = ">=3.10"
keywords = ["geojson", "aoi", "parser", "normalize", "hotosm"]
classifiers = [
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"psycopg>=3.1",
]
[dependency-groups]
test = [
"pytest>=8.3.4",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-exclude>=1.0.2",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material>=9.5.49",
"mkdocstrings-python>=1.13.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["geojson_aoi"]
[tool.ruff]
fix = true
line-length = 88
target-version = "py310"
exclude = [
".ruff_cache",
"geojson_aoi/__version__.py",
]
[tool.ruff.lint]
select = ["I", "E", "W", "D", "B", "F", "N", "Q"]
ignore = ["N805", "B008"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.2.0"
version_files = [
"pyproject.toml:version",
"geojson_aoi/__version__.py",
]
changelog_file = "CHANGELOG.md"
update_changelog_on_bump = true