Metadata-Version: 1.1
Name: mk.recipe.pip
Version: 0.2
Summary: Use pip from buildout
Home-page: https://github.com/k4ml/mk.recipe.pip
Author: Kamal Mustafa
Author-email: kamal.mustafa@gmail.com
License: ZPL
Description: Introduction
        ============
        
        ''mk.recipe.pip'' is a `zc.buildout`_ recipe which allow
        you to piggyback on pip to install certain packages that
        not possible to install using `zc.recipe.egg`_. It does not
        replace `zc.recipe.egg`_ (not yet) but should be used in conjuction
        with that recipe. It's based on ''collective.recipe.modwsgi'.'
        
        It is very simple to use. This is a minimal ''buildout.cfg'' file::
        
            [buildout]
            parts = pip base
        
            [pip]
            recipe = mk.recipe.pip
            requirements =
                svn+http://django-grappelli.googlecode.com/svn/trunk
            disable-pth = true
        
            [base]
            recipe = zc.recipe.egg
            interpreter = python
            eggs =
                grappelli
                Django==1.5.1
        
        Above, ``grappelli`` will be installed into ``eggs`` directory so that
        `zc.recipe.egg`_ can pick it up. This especially usefull to install private
        packages that only available maybe through svn or other version control system.
        
        .. _zc.buildout: http://pypi.python.org/pypi/zc.buildout
        .. _zc.recipe.egg: http://pypi.python.org/pypi/zc.recipe.egg
        .. _paste.deploy: http://pythonpaste.org/deploy/
        .. _mod_wsgi: http://code.google.com/p/modwsgi/
        .. _z3c.recipe.scripts: http://pypi.python.org/pypi/z3c.recipe.scripts
        Changelogs
        ==========
        
        ================
        0.2 - 2013-05-08
        ================
        * Add eggs option, can be used in zc.recipe.egg eggs's options.
        
        ===
        0.1
        ===
        * Initial release.
        
Keywords: wsgi buildout
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Buildout :: Recipe
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
