plan/pyproject.toml

28 lines
561 B
TOML

[project]
name = "plan"
version = "0.1.1"
description = "edit ~/.plan files"
authors = [{ name = "gitmatt", email = "git@publicmatt.com" }]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.8",
"click-default-group>=1.2.4",
"jinja2>=3.1.5",
"lxml>=5.3.1",
"markdown>=3.7",
"md2py>=0.0.1",
"pydantic>=2.10.6",
"rich>=13.9.4",
]
[project.scripts]
plan = "plan:cli.cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8.3.4", "wat>=0.5.0"]