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:43 +00:00
parent a640c4cf79
commit ca7a0a1f9a

36
setup.py Normal file
View File

@@ -0,0 +1,36 @@
from setuptools import setup, find_packages
setup(
name="man-card",
version="1.0.0",
py_modules=["man_card"],
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"click>=8.1.7",
"fpdf2>=2.7.5",
"Pillow>=10.1.0",
"rich>=13.7.0",
"python-dotenv>=1.0.0",
],
entry_points={
"console_scripts": [
"man-card=man_card.cli:main",
],
},
author="man-card contributors",
description="A CLI tool that parses man pages and generates beautiful command reference cards",
long_description=open("README.md").read() if exists("README.md") else "",
long_description_content_type="text/markdown",
url="https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)