Initial Commit
This commit is contained in:
parent
a436a7569d
commit
5ae6b988aa
23 changed files with 2400 additions and 0 deletions
34
pyproject.toml
Normal file
34
pyproject.toml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "ops-warden"
|
||||
version = "0.1.0"
|
||||
description = "SSH CA and certificate lifecycle manager for ops actors"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"typer[all]>=0.12",
|
||||
"pyyaml>=6.0",
|
||||
"httpx>=0.27",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
warden = "warden.cli:app"
|
||||
ops-ssh-wrapper = "warden.scripts.ops_ssh_wrapper:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/warden"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
pythonpath = ["src"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 88
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest>=8.0",
|
||||
"ruff>=0.4",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue