Initial commit: lightweight CLI ticket tracker
A JSON-backed ticket management system with full CRUD operations, status/priority filtering, prefix-based ID resolution, and test suite.
This commit is contained in:
19
pyproject.toml
Normal file
19
pyproject.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=68.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "tickets"
|
||||
version = "0.1.0"
|
||||
description = "A lightweight CLI ticket tracker stored in git"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
license = {text = "MIT"}
|
||||
authors = [{name = "Arcline Dev", email = "dev@arcline-project.local"}]
|
||||
|
||||
[project.scripts]
|
||||
tickets = "tickets.cli:entry_point"
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = ["pytest>=8.0", "pytest-cov>=5.0"]
|
||||
|
||||
Reference in New Issue
Block a user