Initial upload: man-card CLI tool with PDF/PNG generation, templates, and tests
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-01-31 21:39:42 +00:00
parent 3b17eab52a
commit 75599b0ad1

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[tool.poetry]
name = "man-card"
version = "1.0.0"
description = "A CLI tool that parses man pages and generates beautiful, printable command reference cards"
authors = ["man-card contributors"]
license = "MIT"
readme = "README.md"
packages = [{include = "man_card"}]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.7"
fpdf2 = "^2.7.5"
Pillow = "^10.1.0"
rich = "^13.7.0"
python-dotenv = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]