-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (47 loc) · 1.06 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
[tool.poetry]
name = "ohsome"
version = "0.4.0"
description = "A Python client for the ohsome API"
authors = ["HeiGIT ohsome team <[email protected]>", "GIScience Research Group, Heidelberg University"]
repository = "https://github.com/GIScience/ohsome-py"
readme = 'README.md'
license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.25.1"
pandas = "^2.1.3"
numpy = "^2.1.2"
geopandas = "^1.0.1"
urllib3 = "^2.0.2"
curlify2 = "^2.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-random-order = "^1.1.0"
pytest-recording = "^0.13.0"
responses = "^0.24.1"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
pre-commit = "^3.5.0"
jupyter = "^1.0.0"
[tool.dephell.main]
from = { format = "poetry", path = "pyproject.toml" }
to = { format = "setuppy", path = "setup.py" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''