33 lines
662 B
TOML
33 lines
662 B
TOML
[project]
|
|
name = "forge-tools"
|
|
version = "0.0.0"
|
|
description = "Homegrown CLI tooling for code forges."
|
|
authors = [
|
|
{name="Marc Cataford", email="hello@karnov.club"}
|
|
]
|
|
readme = "README.md"
|
|
license={ file = "LICENSE" }
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.1.7",
|
|
"httpx>=0.27.2",
|
|
"pydantic>=2.9.2",
|
|
"pyyaml>=6.0.2",
|
|
]
|
|
|
|
[project.urls]
|
|
homepage = "https://forge.karnov.club/marc/forge-tools"
|
|
issues = "https://forge.karnov.club/marc/forge-tools/issues"
|
|
|
|
[project.scripts]
|
|
frg = "frg.cli:main"
|
|
|
|
[tool.setuptool]
|
|
packages = ["frg"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pre-commit>=4.0.1",
|
|
"pytest>=8.3.3",
|
|
"ruff>=0.7.2",
|
|
]
|