A Python library that helps prevent accidental overwrites of hand-compiled libraries
Project description
Install-Preserve
Install-Preserve is a Python library that helps detect already installed packages and removes them from the install_requires
list within the setup.py
file. This prevents accidentally overwriting hand-compiled libraries such as OpenCV, PyTorch, or TensorFlow.
Usage
from setuptools import setup
try:
from install_preserve import preserve
except ImportError:
import pip
pip.main(['install', 'install-preserve'])
from install_preserve import preserve
requirements = [
'pyyaml',
'tqdm',
'numpy',
'easydict==1.9.0',
'scikit-image==0.17.2',
'scikit-learn==0.24.2',
'joblib',
'matplotlib',
'pandas',
'albumentations==0.5.2',
'hydra-core==1.1.0',
'tabulate',
'webdataset',
'packaging',
'wldhx.yadisk-direct',
'opencv-python',
'torch==2.0.0'
]
excludes = [
'tqdm',
'opencv-python:cv2', # Note the colon delimited statement to illustrate <package-name>:<import alias>
'torch'
]
requirements = preserve(requirements, excludes, verbose=True)
setup(
name='your_package',
version='1.0',
install_requires=requirements,
# Other setup options...
)
Example Output
excluding package tqdm as it is already installed
excluding package opencv-python as it is already installed
excluding package pytorch as it is already installed
Installation
To install, you can use pip:
pip install install-preserve
License
This library is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit pull requests or open issues on the GitHub repository.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file install-preserve-0.1.0.tar.gz
.
File metadata
- Download URL: install-preserve-0.1.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1134fbe844d5e9726d88fb765f4e6f1d153d1e97dae51e87103ac80c9ef92955 |
|
MD5 | 1a5d3bbfaf68588b25937dc4bcec4bb7 |
|
BLAKE2b-256 | 2aa485b53a3fc96b5795cc85b20576735fa01d8aa83cf0660f6c20a164061480 |
File details
Details for the file install_preserve-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: install_preserve-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4287415ebdfb7050fb3a412509dc4ef4e4331f6f03ec0747e97f31d3447532ab |
|
MD5 | 85268dad7e9817534412dba2252fd1c1 |
|
BLAKE2b-256 | 5b4d1ec0e189d8fa29d38028201851006056dba8e696a3817044f37c3cf60c81 |