chore: make work-item a reusable subproject

This commit is contained in:
2026-07-13 16:21:28 +02:00
parent e35e5040a3
commit 43ffde71da
15 changed files with 1740 additions and 620 deletions

20
work_item/pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "gitea-work-item"
version = "0.1.0"
description = "Safe single-agent Git and Gitea backlog workflow automation"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["PyYAML>=6.0"]
[project.scripts]
work-item = "work_item.core:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100