31 lines
704 B
TOML
31 lines
704 B
TOML
[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_*"]
|