Spaces:
Sleeping
Sleeping
File size: 699 Bytes
7dc0a68 378169c 7dc0a68 |
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 |
[tool.poetry]
name = "height_profile"
version = "0.1.0"
description = "Hugging Face space that generates a height profile for GPX file"
authors = ["Arthur Dent <arthur@dent.space>"]
license = "MIT"
readme = "README.md"
# packages = [{include = "python_minimal_boilerplate"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
streamlit = "1.24.0"
scipy = "1.11.1"
watchdog = "^3.0.0"
folium = "^0.14.0"
streamlit-folium = "^0.12.0"
altair = "5.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.10.1"
pytest = "^7.3.1"
pre-commit = "^3.3.2"
ruff = "^0.0.270"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black" |