mirror of
https://github.com/pacnpal/pip-add.git
synced 2025-12-20 12:11:04 -05:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e821ca9ec4 | ||
|
|
854c784eab | ||
|
|
5d6c25a50e | ||
|
|
1067ba9529 | ||
|
|
b6fe7168c9 |
13
README.md
13
README.md
@@ -20,7 +20,13 @@ Compatible with Python 3.11, 3.12, and 3.13.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
It's recommended to install pip-add within a virtual environment to avoid conflicts with system packages:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Create and activate virtual environment
|
||||||
|
python -m venv venv
|
||||||
|
source venv/bin/activate # or `venv\Scripts\activate` on Windows
|
||||||
|
|
||||||
# Install from PyPI
|
# Install from PyPI
|
||||||
pip install pip-add
|
pip install pip-add
|
||||||
|
|
||||||
@@ -28,6 +34,13 @@ pip install pip-add
|
|||||||
pip install --upgrade pip-add
|
pip install --upgrade pip-add
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For global installation (use with caution), you can install with pipx:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install globally using pipx
|
||||||
|
pipx install pip-add
|
||||||
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|||||||
12
setup.py
12
setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pip-add",
|
name="pip-add",
|
||||||
version="0.2.1",
|
version="0.2.4",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pip",
|
"pip",
|
||||||
@@ -21,13 +21,23 @@ setup(
|
|||||||
url="https://github.com/PacNPal/pip-add",
|
url="https://github.com/PacNPal/pip-add",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
|
"Environment :: Console",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
|
"Intended Audience :: Information Technology",
|
||||||
|
"Intended Audience :: System Administrators",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Natural Language :: English",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: 3.13",
|
"Programming Language :: Python :: 3.13",
|
||||||
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
|
"Topic :: System :: Installation/Setup",
|
||||||
|
"Topic :: System :: Software Distribution",
|
||||||
|
"Topic :: System :: Systems Administration",
|
||||||
|
"Topic :: Utilities",
|
||||||
],
|
],
|
||||||
python_requires=">=3.11",
|
python_requires=">=3.11",
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user