-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 966 Bytes
/
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
[tool.poetry]
name = "osm4gpd"
version = "0.2.0a3"
description = "A parser that loads openstreetmaps native protobuf format into a sparse geopandas dataframe."
authors = ["Christian <[email protected]>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
pandas = ">=2.0.3"
geopandas = ">=0.13.2"
shapely = ">=2.0.1"
protobuf = ">=4.23.4"
numpy = ">=1.25.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-datadir = "^1.4.1"
pytest-codecov = "^0.5.1"
exceptiongroup = "^1.1.3"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
mypy-protobuf = "^3.4.0"
mypy = "^1.4.1"
flake8 = "^6.0.0"
isort = "^5.12.0"
black = "^23.7.0"
bandit = "^1.7.5"
pandas-stubs = "^2.0.3.230814"
[tool.commitizen]
version = "0.2.0a3"
tag_format = "$version"
version_files = [
"osm4gpd/__version__.py",
"pyproject.toml:^version"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"