-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 749 Bytes
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
[project]
name = "LibreView"
version = "0.3.0"
description = "API interface for LibreView / LibreLinkUp glucose readings"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"requests",
"dataclass-wizard",
]
[project.urls]
"Homepage" = "https://github.com/PTST/LibreView_Py"
"Bug Tracker" = "https://github.com/PTST/LibreView_Py/issues"
[dependency-groups]
dev = [
"black",
"twine",
"pytest",
"pylint",
"pip-system-certs",
"pytest-cov",
"dotenv",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
only-include = ["LibreView"]
[tool.hatch.build.targets.sdist]
include = [
"LibreView",
"README.md",
"pyproject.toml",
"LICENSE",
]