28 lines
606 B
TOML
28 lines
606 B
TOML
[project]
|
|
name = "tracker"
|
|
version = "0.1.0"
|
|
description = "Personal project tracker CLI with Markdown-based persistence"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"typer[all]>=0.12.0",
|
|
"pyyaml>=6.0",
|
|
"jinja2>=3.1.0",
|
|
"pydantic>=2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
git = ["gitpython"]
|
|
|
|
[project.scripts]
|
|
tracker = "tracker.cli.main:app"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["tracker*"]
|
|
exclude = ["tests*", "examples*", "docs*", "backlog*", "resumen*"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|