14 lines
304 B
TOML
14 lines
304 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "agent-todo-tracker"
|
|
version = "0.1.0"
|
|
description = "Lightweight TODO tracker for agent engineers"
|
|
requires-python = ">=3.9"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
agent-todo = "agent_todos.cli:main"
|