25 lines
386 B
TOML
25 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",
|
||
|
]
|