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