21 lines
378 B
TOML
21 lines
378 B
TOML
|
|
[project]
|
||
|
|
name = "forge"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "A home-manager style Fedora configuration helper."
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = ["tomlkit>=0.12"]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
forge = "forge.cli:main"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.uv]
|
||
|
|
package = true
|
||
|
|
|
||
|
|
[dependency-groups]
|
||
|
|
dev = ["pytest>=7.4"]
|