Crea servizio watchdog configurabile

This commit is contained in:
2026-06-30 20:28:02 +02:00
parent 124cc370e5
commit 4dca5fbf95
17 changed files with 904 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "bak-and-rest"
version = "0.1.0"
description = "Windows watchdog service and tray backup utility."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"watchdog>=4.0.0",
"pywin32>=306; platform_system == 'Windows'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]