Files
chguard/pyproject.toml
Marco D'Aleo e8f63386bb
Some checks failed
Lint & Security / precommit-and-security (pull_request) Failing after 47s
Add filelock ^3.20.1 in order to get away from CVE-2025-68146
2025-12-21 09:40:56 +00:00

30 lines
703 B
TOML

[tool.poetry]
name = "chguard"
version = "0.2.0"
description = "Safety-first tool to snapshot and restore filesystem ownership and permissions."
authors = ["Marco D'Aleo <marco@marcodaleo.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://git.sysmd.uk/guardutils/chguard"
repository = "https://git.sysmd.uk/guardutils/chguard"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
rich = ">=12"
argcomplete = ">=2"
platformdirs = "^4.5.1"
filelock = "^3.20.1"
[tool.poetry.scripts]
chguard = "chguard.cli:main"
[tool.poetry.dev-dependencies]
pre-commit = "^3.8"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"