mirror of
https://github.com/pacnpal/pip-add.git
synced 2025-12-20 04:01:05 -05:00
Initial commit
This commit is contained in:
18
setup.py
Normal file
18
setup.py
Normal 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",
|
||||
)
|
||||
Reference in New Issue
Block a user