Files
resrm/pyproject.toml
Marco D'Aleo 38ed42f4b7
All checks were successful
Trivy Scan / security-scan (push) Successful in 27s
Update filelock and virtualenv
2026-01-15 17:00:28 +00:00

28 lines
656 B
TOML

[tool.poetry]
name = "resrm"
version = "0.4.1"
description = "drop-in replacement for rm with undo/restore built-in."
authors = ["Marco D'Aleo <marco@marcodaleo.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://git.sysmd.uk/guardutils/resrm"
repository = "https://git.sysmd.uk/guardutils/resrm"
packages = [{include = "resrm", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
argcomplete = ">=2"
[tool.poetry.dev-dependencies]
pre-commit = "^3.8"
[tool.poetry.scripts]
resrm = "resrm.cli:main"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"