Metadata-Version: 1.1
Name: pyenv
Version: 20150113
Summary: Tool to install pyenv and friends
Home-page: https://github.com/yyuu/pyenv-installer
Author: Yamashita, Yuu
Author-email: UNKNOWN
License: MIT
Description: pyenv installer
        ===============
        
        This tool installs ``pyenv`` and friends. It is inspired by `rbenv-installer <https://github.com/fesplugas/rbenv-installer>`__.
        
        Installation / Update / Uninstallation
        --------------------------------------
        
        There are two ways to install `pyenv <https://github.com/yyuu/pyenv>`__.
        The PyPi support is not tested by many users yet, so the
        direct way ist still recommended if you want to play it safe.
        
        Github way (recommended)
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        Install::
        
            $ curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
        
        Update::
        
            $ pyenv update
        
        Uninstall: ``pyenv`` is installed within ``$PYENV_ROOT``
        (default: ``~/.pyenv``). To uninstall, just remove it::
        
            $ rm -fr ~/.pyenv
        
        PyPi way
        ~~~~~~~~
        
        **WARNING** note the necessary use of the --egg parameter
        
        Install::
        
            $ pip install --egg pyenv
        
        
        In the current implementation updates and uninstallation works exactly like
        the github way.
        
        **NOTE**: ``pip freeze`` will not show pyenv as installed as this tool is just a
        thin wrapper around the shell install script.
        
        Development and testing
        -----------------------
        
        The `project on github <https://github.com/yyuu/pyenv-installer>`__ contains
        a setup for vagrant to test the installer inside a vagrant managed virtual image.
        
        If you don't know vagrant yet: just `install the latest
        package <https://www.vagrantup.com/downloads.html>`__, open a shell in
        this project directory and say
        
        ::
        
            $ vagrant up
            $ vagrant ssh
        
        Now you are inside the vagrant container and your prompt should like
        something like ``vagrant@vagrant-ubuntu-trusty-64:~$``
        
        The project (this repository) is mapped into the vagrant image at
        /vagrant
        
        ::
        
            $ cd /vagrant
            $ python setup.py install
            $ echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bashrc
            $ echo 'eval "$(pyenv init -)"' >> ~/.bashrc
            $ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
            $ source ~/.bashrc
        
        Pyenv should be installed and responding now.
        
        
        Version History
        ---------------
        
        20150113
        ~~~~~~~~
        
        -  Initial release on PyPi.
        
        20130601
        ~~~~~~~~
        
        -  Initial public release.
        
        
        License
        -------
        
        (The MIT License)
        
        -  Copyright (c) 2013-2015 Yamashita, Yuu
        
        | Permission is hereby granted, free of charge, to any person obtaining
        | a copy of this software and associated documentation files (the
        | "Software"), to deal in the Software without restriction, including
        | without limitation the rights to use, copy, modify, merge, publish,
        | distribute, sublicense, and/or sell copies of the Software, and to
        | permit persons to whom the Software is furnished to do so, subject to
        | the following conditions:
        
        | The above copyright notice and this permission notice shall be
        | included in all copies or substantial portions of the Software.
        
        | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
        | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
        | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
        | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: UNIX
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Unix Shell
Classifier: Topic :: Software Development :: Interpreters
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
