Update package description and bump version to 0.1.2 with clear Python version support

This commit is contained in:
PacNPal
2024-11-19 09:24:26 -05:00
parent 00e886eb59
commit 252aa284f2
2 changed files with 6 additions and 3 deletions

View File

@@ -2,6 +2,8 @@
A command-line tool that combines package installation and requirements.txt management. Install, update, or remove Python packages and their dependencies with automatic requirements.txt handling. A command-line tool that combines package installation and requirements.txt management. Install, update, or remove Python packages and their dependencies with automatic requirements.txt handling.
Compatible with Python 3.11, 3.12, and 3.13.
## Features ## Features
- Single command for package management and requirements.txt updates - Single command for package management and requirements.txt updates
@@ -12,6 +14,7 @@ A command-line tool that combines package installation and requirements.txt mana
- Clean, informative output with version information - Clean, informative output with version information
- Preserves requirements.txt comments and formatting - Preserves requirements.txt comments and formatting
- Creates requirements.txt if it doesn't exist - Creates requirements.txt if it doesn't exist
- Full support for Python 3.11, 3.12, and 3.13
## Installation ## Installation
@@ -123,7 +126,7 @@ The tool is designed to safely handle dependencies:
## Requirements ## Requirements
- Python 3.6+ - Python 3.11, 3.12, or 3.13
- pip - pip
- setuptools - setuptools

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="pip-add", name="pip-add",
version="0.1.1", version="0.1.2",
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"pip", "pip",
@@ -15,7 +15,7 @@ setup(
}, },
author="PacNPal", author="PacNPal",
author_email="pac@pacnp.al", author_email="pac@pacnp.al",
description="A CLI tool to install packages and manage requirements.txt in one command", description="A modern Python package manager that combines pip install with requirements.txt management. Supports Python 3.11, 3.12, and 3.13.",
long_description=open('README.md').read(), long_description=open('README.md').read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/PacNPal/pip-add", url="https://github.com/PacNPal/pip-add",