Metadata-Version: 1.1
Name: cykooz.buildout.venv
Version: 1.1.0
Summary: A zc.buildout extension for run buildout under virtual python environment.
Home-page: https://bitbucket.org/cykooz/cykooz.buildout.venv
Author: Kirill Kuzminykh
Author-email: saikuz@mail.ru
License: UNKNOWN
Description: **cykooz.buildout.venv** is a `zc.buildout`_ extension that creates virtual
        python environment and use it to run buildout.
        
        .. _`zc.buildout`: http://pypi.python.org/pypi/zc.buildout
        
        Usage
        *****
        
        Add ``cykooz.buildout.venv`` to the ``extensions`` entry in your ``[buildout]``
        section::
        
            [buildout]
            extensions = cykooz.buildout.venv
        
        This enables additional ``[buildout]`` option:
        
        ``venv-directory``
          This specifies the directory where virtual environment will be
          created. Defaults to ``parts/venv``.
        
          If this directory already has a virtual python environment, then it will be
          used to run buildout without any changes.
        
        Full example
        ============
        ::
        
            [buildout]
            extensions = cykooz.buildout.venv
            venv-directory = ${buildout:parts-directory}/myvenv
        
        
        ..  Changelog format guide.
            - Before make new release of core egg you MUST add here a header for new version with name "Next release".
            - After all headers and paragraphs you MUST add only ONE empty line.
            - At the end of sentence which describes some changes SHOULD be identifier of task from our task manager.
              This identifier MUST be placed in brackets. If a hot fix has not the task identifier then you
              can use the word "HOTFIX" instead of it.
            - At the end of sentence MUST stand a point.
            - List of changes in the one version MUST be grouped in the next sections:
                - Features
                - Changes
                - Bug Fixes
                - Docs
        
        Changelog
        *********
        
        1.1.0 (2016-08-13)
        ==================
        
        Features
        --------
        
        - Added support for Windows.
        
        1.0.1 (2016-08-12)
        ==================
        
        - First release.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Buildout
Classifier: Topic :: Software Development :: Libraries :: Python Modules
