-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 779 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 779 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
[project]
name = "home-assistant-backup-decryption"
version = "0.2.0"
description = "Decrypt and extract Home Assistant encrypted backups"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography",
"securetar>=2025.12.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
# Restrict collection: input/ and output/ hold real backup data, not test code.
testpaths = ["tests"]
[tool.uv]
# Single-file script, nothing to build or install: uv only manages the environment.
package = false
# Resolve against public PyPI so uv.lock is reproducible for everyone, regardless of
# any private mirror configured in the user's global uv/pip settings.
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
default = true