Files
dockreap/pyproject.toml
Kevin Veen-Birkenbach 6675c8bdbb
Some checks failed
CI (unit tests, stable tag) / test (push) Has been cancelled
Release version 1.0.1
2025-12-28 12:00:29 +01:00

37 lines
949 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dockreap"
version = "1.0.1"
description = "Remove unused anonymous Docker volumes (with symlink cleanup)."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Kevin Veen-Birkenbach" }]
keywords = ["docker", "volumes", "cleanup", "devops"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Systems Administration",
]
dependencies = []
[project.urls]
Homepage = "https://www.veen.world/"
Repository = "https://github.com/kevinveenbirkenbach/dockreap"
[project.scripts]
dockreap = "dockreap.__main__:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]