Files
spec-kit/pyproject.toml
2025-08-22 17:24:44 +00:00

22 lines
428 B
TOML

[project]
name = "specify-cli"
version = "0.0.1"
description = "Setup tool for Specify spec-driven development projects"
requires-python = ">=3.11"
dependencies = [
"typer",
"rich",
"httpx",
"platformdirs",
"readchar",
]
[project.scripts]
specify = "specify_cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/specify_cli"]