Files
pobsync/pyproject.toml

30 lines
558 B
TOML
Raw Normal View History

2026-02-02 22:15:54 +01:00
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pobsync"
version = "1.1.0"
2026-02-02 22:15:54 +01:00
description = "Pull-based rsync backup tool with hardlinked snapshots"
requires-python = ">=3.11"
dependencies = [
"Django>=5.2,<6.0",
"gunicorn>=23.0,<24.0",
"whitenoise>=6.9,<7.0",
2026-02-02 22:15:54 +01:00
"PyYAML>=6.0"
]
[project.optional-dependencies]
mariadb = [
"mysqlclient>=2.2"
]
2026-02-02 22:15:54 +01:00
[project.scripts]
pobsync = "pobsync.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]