Metadata-Version: 1.1
Name: subvenv
Version: 1.0.0
Summary: A tool for creating virtualenv-friendly Sublime Text project files
Home-page: http://github.com/Railslide/subvenv
Author: Giulia Vergottini
Author-email: hello@railslide.io
License: MIT
Description: Subvenv
        =======
        
        Subvenv makes the creation of virtualenv-friendly Sublime Text 2/3
        project files as easy as ``subvenv make_project`` (or even skipping it
        by integrating it with Virtualenwrapper!).
        
        Create your virtualenv, run subvenv, and you're ready to code.
        
        Bonus point: besides saving you the time of manually creating a project
        files, it also makes linting plugins like
        `Anaconda <https://github.com/DamnWidget/anaconda>`__ and
        `SublimePythonIDE <https://github.com/JulianEberius/SublimePythonIDE>`__
        work out of the box!
        
        Table of contents
        -----------------
        
        -  `Installation <#installation>`__
        -  `Virtualenvwrapper projects
           integration <#virtualenvwrapper-projects-integration>`__
        -  `Usage as a standalone <#usage-as-a-standalone>`__
        -  `Supported virtualenv managers <#supported-virtualenv-managers>`__
        -  `Contributions <#contributions>`__
        -  `License <#License>`__
        
        Installation
        ------------
        
        You can install the latest stable release via pip:
        
        ::
        
            $ pip install subvenv
        
        Virtualenvwrapper projects integration
        --------------------------------------
        
        Using `Virtualenvwrapper
        projects <http://virtualenvwrapper.readthedocs.org/en/latest/projects.html#project-management>`__
        removes the need of manually running Subvenv. Project creation will
        activate Subvenv behind the scenes and a Sublime project file will be
        automagically created inside the project folder.
        
        Simply create a new virtualenv with
        
        ::
        
             $ mkproject <project_name>
        
        and a ``<project_name>.sublime-project`` file will be placed in your
        ``/your/project/home/<project_name>/``. Open it with Sublime Text and
        you are ready to go.
        
        Usage as a standalone
        ---------------------
        
        If you don't want to pass through a Virtualenwrapper project:
        
        ::
        
            $ subvenv make-project [target_folder]  # default is current folder
        
        will create a ``<virtualenv_name>.sublime-project`` file in your target
        folder.
        
        Supported virtualenv managers
        -----------------------------
        
        Subvenv supports Virtualenv, Virtualenwrapper, and pyvenv.
        
        Any other virtualenv manager making use of the ``VIRTUALENV``
        environment variable should probably work too.
        
        Contributions
        -------------
        
        Are highly appreciated :)
        
        Just follow PEP8 if you're going to submit code.
        
        License
        -------
        
        MIT license. See ``LICENSE`` file for more information.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
