Files
pobsync/pyproject.toml
Peter van Arkel beca073ddc (release) Prepare 1.0.0 release metadata
Add the initial 1.0.0 changelog, bump the package/application version,
and expose the release version through `pobsync --version`.

Cover the version output in the console entrypoint tests.
2026-05-21 03:04:59 +02:00

30 lines
558 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pobsync"
version = "1.0.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"]