forge-tools/pyproject.toml
Marc Cataford 5cbe845e6e
feat: initial push
fix: broken import get_context -> get_git_context
2024-11-02 15:00:48 -04:00

24 lines
386 B
TOML

[project]
name = "frg"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.7",
"httpx>=0.27.2",
"pydantic>=2.9.2",
"pyyaml>=6.0.2",
]
[project.scripts]
frg = "frg.cli:main"
[tool.setuptool]
packages = ["frg"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"ruff>=0.7.2",
]