Initial commit

This commit is contained in:
pacnpal
2024-11-19 01:21:25 -05:00
commit ec39193430
6 changed files with 530 additions and 0 deletions

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
from setuptools import setup, find_packages
setup(
name="pip-add",
version="0.1.0",
packages=find_packages(),
install_requires=[
"pip",
"setuptools",
],
entry_points={
'console_scripts': [
'pip-add=pip_add.cli:main',
],
},
author="PacNPal",
description="A CLI tool to install packages and add them to requirements.txt",
)