forked from jaroslawhartman/withings-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.16 KB
/
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
[tool.poetry]
name = "withings-sync"
version = "1.0.0.dev1"
description = "A tool for synchronisation of Withings (ex. Nokia Health Body) to Garmin Connect and Trainer Road."
license = "MIT"
authors = ["Masayuki Hamasaki <[email protected]>",
"Steffen Vogel <[email protected]>",
"Jarek Hartman <[email protected]>",
]
maintainers = ["longstone <[email protected]>",
]
repository = "https://github.com/jaroslawhartman/withings-sync"
homepage = "https://github.com/jaroslawhartman/withings-sync"
readme = "README.md"
keywords = ["garmin", "withings", "sync", "api", "scale", "smarthome"]
packages = [{include = "withings_sync"}]
classifiers = ["Topic :: Utilities",
"Topic :: Home Automation",
]
[tool.poetry.dependencies]
python = "^3.12"
garth = ">=0.5.0"
requests = ">=2.32.3"
lxml = ">=5.3.0"
python-dotenv = ">=1.0.1"
importlib-resources = ">=6.4.5"
[tool.poetry.group.dev.dependencies]
black = ">=24.10.0"
pylint = ">=3.3.1"
[tool.poetry.scripts]
withings-sync = "withings_sync.sync:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"