Metadata-Version: 1.2
Name: pipless
Version: 0.1.3
Summary: Too much pip? Install packages on import without changing your code.
Home-page: https://github.com/d0c-s4vage/pipless
Author: James "d0c_s4vage" Johnson
Author-email: d0c.s4vage@gmail.com
Maintainer: James "d0c_s4vage" Johnson
License: MIT
Download-URL: https://github.com/d0c-s4vage/pipless/tarball/v0.1.3
Description: 
        TL;DR pipless let's you install packages as they are needed without
        requiring code modification.
        
        pipless hooks the import process and automatically installs packages
        if they are not present in the current environment. By default
        pipless will create a virtual environment into which packages
        are installed.
        
        The pipless module is intended to be run with the "-m" argument to
        the python executable:
        
            python -m pipless [script_path [args..]]
        
        If no script path is given, pipless will drop the user into an
        interactive shell after activating a virtual environment and setting
        up the pipless import hooks.
        
        If a script path is given, the pipless import hooks will be installed
        prior to running the script.
        
        pipless can also be explicitly imported into the source code. Doing
        so will install the necessary hooks and activate the virtual
        environment.
        
        The pipless experience becomes especially seamless when an alias
        is made for python in your ~/.bashrc. E.g. alias python="python
        -m pipless"
        
        See https://github.com/d0c-s4vage/pipless for more details.
        
Platform: Cross Platform
Classifier: Programming Language :: Python :: 2
