forge-tools/pyproject.toml

34 lines
662 B
TOML
Raw Permalink Normal View History

[project]
2024-11-02 19:24:37 +00:00
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"
2024-11-02 19:24:37 +00:00
license={ file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"click>=8.1.7",
"httpx>=0.27.2",
"pydantic>=2.9.2",
"pyyaml>=6.0.2",
]
2024-11-02 19:24:37 +00:00
[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",
]