28 lines
652 B
TOML
28 lines
652 B
TOML
[tool.poetry]
|
|
name = "resrm"
|
|
version = "0.3.2"
|
|
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://github.com/guardutils/resrm"
|
|
repository = "https://github.com/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"
|