feat: add initial CLI skeleton and scan command
This commit is contained in:
parent
b892738845
commit
cf630318db
9 changed files with 233 additions and 0 deletions
32
pyproject.toml
Normal file
32
pyproject.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=68", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "dockervault"
|
||||
version = "0.1.0"
|
||||
description = "CLI backup discovery tool for Docker environments"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
authors = [
|
||||
{ name = "Ed & NodeFox" }
|
||||
]
|
||||
license = { text = "MIT" }
|
||||
keywords = ["docker", "backup", "cli", "borg", "inventory"]
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent"
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
dockervault = "dockervault.cli:main"
|
||||
|
||||
[tool.setuptools]
|
||||
package-dir = {"" = "."}
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["."]
|
||||
include = ["dockervault*"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue