diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5a5e5fe --- /dev/null +++ b/setup.py @@ -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", + ], +)