Metadata-Version: 2.1
Name: backporting
Version: 1.0.1
Summary: Backporting tool
Home-page: https://github.com/levon2111/backporting.git
Author: LY
Author-email: Levon Yeghiazaryan <levon2111@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/levon2111/backporting
Project-URL: Issues, https://github.com/levon2111/backporting/issues
Keywords: Backporting
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown


### Install the package:

    pip3 install backporting
    
#### After the command `backporting` should be available from CLI. 




## Additional commands to create venv if it's needed 

### Create www directory where project sites and environment dir

    mkdir /var/envs && mkdir /var/envs/bin

### Install virtualenvwrapper

    sudo pip3 install virtualenvwrapper
    sudo pip3 install --upgrade virtualenv

### Add these to your bashrc virutualenvwrapper work

    export WORKON_HOME=/var/envs
    export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
    export PROJECT_HOME=/var/www
    export VIRTUALENVWRAPPER_HOOK_DIR=/var/envs/bin
    source /usr/local/bin/virtualenvwrapper.sh

### Create virtualenv
    mkvirtualenv --python=python3 test_env
