-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pylibrelinkup"
dynamic = ["version"]
description = "A client for the Abbott LibreLinkUp API"
readme = "README.md"
authors = [
{ name="Rob Berwick", email="rob.berwick@gmail.com" },
]
license = { file="LICENSE" }
keywords = [
"librelink",
"librelinkup",
"abbott",
"diabetes",
"glucose",
"api",
"client",
"health",
"medical",
"blood-sugar",
"continuous-glucose-monitoring",
"cgm"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0",
"pydantic>= 2.5.0",
]
requires-python = ">=3.11"
[project.optional-dependencies]
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autobuild", "sphinx-autodoc-typehints", "autodoc_pydantic", "enum-tools[sphinx]", "setuptools_scm"]
dev = ["black", "isort", "pre-commit"]
test = ["pytest", "pytest-cov", "pytest-mock", "polyfactory", "responses"]
[project.urls]
Homepage = "https://github.com/robberwick/pylibrelinkup"
Issues = "https://github.com/robberwick/pylibrelinkup/issues"
Documentation = "https://pylibrelinkup.readthedocs.io/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.black]
target_version = ['py311']
[tool.isort]
profile = "black"