initial commit

This commit is contained in:
Jev Kuznetsov
2026-04-16 11:36:48 +02:00
commit 60710fab20
30 changed files with 1460 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[project]
name = "cli-tools"
version = "0.1.0"
description = "Dev environment CLI tools"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["typer"]
[project.scripts]
cli-tools = "cli_tools.cli:app"
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff>=0.15.9",
]