Files
rocky-man/pyproject.toml
Stephen Simpson 316610e932 updates
2025-12-10 11:16:55 -06:00

28 lines
613 B
TOML

[project]
name = "rocky-man"
version = "0.1.0"
description = "Rocky Linux Man Pages - A comprehensive man page hosting solution for Rocky Linux 8, 9, and 10"
readme = "README.md"
license = {text = "MIT"}
authors = [
{ name = "Stephen Simpson", email = "ssimpson89@users.noreply.github.com" }
]
requires-python = ">=3.12"
dependencies = [
"requests>=2.32.0",
"rpmfile>=2.1.0",
"jinja2>=3.1.0",
"lxml>=6.0.0",
"zstandard>=0.25.0",
]
[project.scripts]
rocky-man = "rocky_man.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = []