22 lines
476 B
TOML
22 lines
476 B
TOML
|
|
[project]
|
||
|
|
name = "corchestrate"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = ""
|
||
|
|
authors = [
|
||
|
|
{name = "Filip",email = "filip.strajnar@gmail.com"}
|
||
|
|
]
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.13"
|
||
|
|
dependencies = [
|
||
|
|
"plotly (>=6.3.0,<7.0.0)",
|
||
|
|
"pandas (>=2.3.2,<3.0.0)",
|
||
|
|
"garmin-fit-sdk (>=21.178.0,<22.0.0)"
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.poetry]
|
||
|
|
packages = [{include = "corchestrate", from = "src"}]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||
|
|
build-backend = "poetry.core.masonry.api"
|