Fix dependencies, add tab completion with argcomplete, update README

This commit is contained in:
2025-11-26 12:59:38 +00:00
parent dce1b271ce
commit 4e8171da84
4 changed files with 101 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "filedust"
version = "0.1.0"
version = "0.2.0"
description = "Opinionated junk cleaner for dev machines (caches, build artifacts, editor backups)."
authors = ["Marco D'Aleo <marco@marcodaleo.com>"]
license = "GPL-3.0-or-later"
@@ -11,6 +11,8 @@ packages = [{ include = "filedust", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
rich = "^13.0.0"
argcomplete = "^3.3.0"
[tool.poetry.scripts]
filedust = "filedust.cli:main"