This commit is contained in:
deng
2025-11-27 10:42:45 +08:00
commit 469704bc19
9 changed files with 987 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[project]
name = "hiking-assistant"
version = "0.1.0"
description = "This is a web app to analyze gpx for hiking planning"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["streamlit>=1.51.0"]
[dependency-groups]
dev = ["pre-commit>=4.5.0", "pytest>=9.0.1", "ruff>=0.14.6"]
[tool.ruff]
line-length = 150
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "single"