Files
pobsync/pyproject.toml
Peter van Arkel c7e9e69345 (release) Prepare pobsync 1.1.0
Bump the package and runtime version to 1.1.0, add release notes for
the UI-focused control panel update, and refresh version assertions for
the CLI entrypoint.

Refs 1.1
2026-05-21 15:23:50 +02:00

30 lines
558 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pobsync"
version = "1.1.0"
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",
"PyYAML>=6.0"
]
[project.optional-dependencies]
mariadb = [
"mysqlclient>=2.2"
]
[project.scripts]
pobsync = "pobsync.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]