diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..aa8c298 --- /dev/null +++ b/pyproject.toml @@ -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_*"]