-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 943 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
[tool.poetry]
name = "track2route"
version = "0.1.0"
description = "Tool to convert GPX Track to a routeable GPXRoute."
authors = ["Fabian Hausmann"]
[tool.poetry.dependencies]
python = "^3.11"
geopy = "^2.1.0"
gpxpy = "^1.4.2"
sortedcontainers = "^2.3.0"
sphinx = { version = "^3.5.2", optional = true}
sphinx_rtd_theme = { version = "^0.5.1", optional = true}
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme", "rstcheck"]
[tool.poetry.scripts]
track2route = 'track2route.__main__:main'
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.1"
ruff = "^0.5.2"
rope = "^0.18.0"
rstcheck = { version = "^3.3.1", optional = true}
importlib-metadata = "^3.7.2"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=track2route --cov-report=term --cov-branch"
testpaths = [
"tests"
]