22 lines
435 B
TOML
22 lines
435 B
TOML
[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 = [
|
|
"pillow>=10.0.0",
|
|
"pystray>=0.19.5",
|
|
"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"]
|