diff --git a/README.md b/README.md index 184ff96..937cab2 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,13 @@ A command-line tool that combines package installation and requirements.txt mana ## Installation ```bash -# Clone the repository +# Install from PyPI pip install pip-add +# Or install latest version +pip install --upgrade pip-add +``` + ## Usage ### Installation @@ -117,25 +121,21 @@ The tool is designed to safely handle dependencies: - **Analysis**: Shows which dependencies were kept and why - **Protection**: Prevents breaking other installed packages -## File Structure - -``` -pip_add/ -├── setup.py # Package configuration -├── pip_add/ -│ ├── __init__.py # Package initialization -│ └── cli.py # Main implementation -``` - ## Requirements - Python 3.6+ - pip - setuptools -## Development Setup +## Development + +### Local Setup ```bash +# Clone the repository +git clone https://github.com/PacNPal/pip-add.git +cd pip-add + # Create virtual environment python -m venv venv source venv/bin/activate # or `venv\Scripts\activate` on Windows diff --git a/setup.py b/setup.py index 6c9dba4..ee64af3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="pip-add", - version="0.1.0", + version="0.1.1", packages=find_packages(), install_requires=[ "pip", @@ -15,7 +15,7 @@ setup( }, author="PacNPal", author_email="pac@pacnp.al", - description="A CLI tool to install packages and add them to requirements.txt", + description="A CLI tool to install packages and manage requirements.txt in one command", long_description=open('README.md').read(), long_description_content_type="text/markdown", url="https://github.com/PacNPal/pip-add",