Initial commit: zzpyjenkins CLI tool for Jenkins interaction

A CLI tool built with Click and Rich to interact with Jenkins servers.
Provides commands for viewing server info, listing jobs, triggering builds,
checking build status, and watching build progress.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 20:55:31 +08:00
commit 25ad8f3a71
8 changed files with 431 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[project]
name = "zzpyjenkins"
version = "0.1.0"
description = "A CLI tool to interact with Jenkins server for building jobs"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"python-jenkins>=1.8.0",
"click>=8.1.0",
"rich>=13.0.0",
]
[project.scripts]
zzpyjenkins = "zzpyjenkins.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/zzpyjenkins"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"ruff>=0.4.0",
]