2025-12-28 11:27:37 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=69", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "dockreap"
|
2025-12-28 11:28:27 +01:00
|
|
|
version = "1.0.0"
|
2025-12-28 11:27:37 +01:00
|
|
|
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"]
|