19 lines
402 B
TOML
19 lines
402 B
TOML
|
|
[project]
|
||
|
|
name = "geniusrun-garmin-wrapper"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Subprocess wrapper around garminconnect for geniusrund's internal/garmin package"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"garminconnect",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = ["pytest"]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["."]
|