🛠️ Add pyproject.toml and use uv

This commit is contained in:
Mike Gerber 2026-09-02 16:42:53 +02:00
parent 82248deb8d
commit fccb0a672d
5 changed files with 41 additions and 5 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[project]
name = "git-annex-duplicates"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.5.0",
]
[tool.uv]
package = true
[project.scripts]
git-annex-duplicates = "main:main"