Initial commit: Complete pip-add package implementation

This commit is contained in:
PacNPal
2024-11-19 09:09:48 -05:00
parent ec39193430
commit 97c31df1d3
3 changed files with 72 additions and 1 deletions

View File

@@ -14,5 +14,20 @@ setup(
],
},
author="PacNPal",
author_email="pac@pacnp.al",
description="A CLI tool to install packages and add them to requirements.txt",
)
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/PacNPal/pip-add",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.11",
)