From 252aa284f21b1d94ff684b0681cc1f413b000708 Mon Sep 17 00:00:00 2001 From: PacNPal <183241239+pacnpal@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:24:26 -0500 Subject: [PATCH] Update package description and bump version to 0.1.2 with clear Python version support --- README.md | 5 ++++- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 937cab2..3f3df41 100644 --- a/README.md +++ b/README.md @@ -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. +Compatible with Python 3.11, 3.12, and 3.13. + ## Features - 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 - Preserves requirements.txt comments and formatting - Creates requirements.txt if it doesn't exist +- Full support for Python 3.11, 3.12, and 3.13 ## Installation @@ -123,7 +126,7 @@ The tool is designed to safely handle dependencies: ## Requirements -- Python 3.6+ +- Python 3.11, 3.12, or 3.13 - pip - setuptools diff --git a/setup.py b/setup.py index ee64af3..d2e5958 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="pip-add", - version="0.1.1", + version="0.1.2", 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 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_content_type="text/markdown", url="https://github.com/PacNPal/pip-add",