-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 962 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
[tool.poetry]
name = "hiking-trail-matcher"
version = "0.1.0"
description = "Script that helps link together hiking trails in Wikidata and OpenStreetMap based on user validation that they are the same."
authors = ["Dennis Priskorn"]
license = "GPLv3+"
readme = "README.md"
# packages = [{include = "app.py"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
requests = "^2.28.2"
pydantic = "^1.10.4"
rich = "^13.3.1"
questionary = "^1.10.0"
python-dateutil = "^2.8.2"
wikibaseintegrator = "^0.12.7"
pydash = "^7.0.4"
osmpythontools = "^0.3.5"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = "^23.1.0"
codespell = "^2.2.2"
coverage = "^7.1.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
mypy = "^1.0.0"
pre-commit = "^3.0.4"
pytest = "^7.2.1"
pyupgrade = "^3.3.1"
types-python-dateutil = "^2.8.19.13"
types-requests = "^2.31.0.1"
ruff = "^0.0.278"
safety = "^2.3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"