21 lines
379 B
TOML
21 lines
379 B
TOML
[project]
|
|
name = "git-annex-duplicates"
|
|
version = "0.1.0"
|
|
description = "Find duplicate files in a git-annex repository"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.5.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
git-annex-duplicates = "git_annex_duplicates:main"
|