Metadata-Version: 1.0
Name: buildout.bootstrap
Version: 1.4.2
Summary: A buildout extension that adds a buildout        bootstrap.py file to your buildout.
Home-page: http://collective.github.com/buildout.bootstrap
Author: Alex Clark
Author-email: aclark@aclark.net
License: ZPL
Description: Introduction
        ============
        
        *Formerly collective.recipe.bootstrap*
        
        ``buildout.bootstrap`` is a buildout extension that adds a buildout *bootstrap.py* file to your buildout.
        
        It satisfies the use case of::
        
            "I want to keep my buildout's bootstrap.py file up to date without having to manually download it" 
        
        It also makes it easy to add a *bootstrap.py* file to a buildout created via::
        
            $ buildout init
        
        If you still don't understand consider the following: with this extension you can avoid having to type::
        
            $ curl -O http://buildout.org/bootstrap.py
        
        You typically use this extension when you have created a new buildout and want to
        
            - Check it in to version control
            - Check it out somewhere else
        
        See ``docs/INSTALL.txt`` for installation instructions.
        
        Installation
        ============
        
        Add ``buildout.bootstrap`` to the buildout section of your ``buildout.cfg``::
        
            [buildout]
            extensions =
                …
                buildout.bootstrap
        Changes
        =======
        
        1.4.2 (2012-08-18)
        ------------------
        
        - Change bootstrap URL to https://raw.github.com/buildout/buildout/1.6.x/bootstrap/bootstrap.py
          [aclark]
        
        1.4.1 (2012-05-16)
        ------------------
        
        - Change bootstrap URL to http://buildout.org/bootstrap.py
          [aclark]
        
        1.4.0 (2012-05-16)
        ------------------
        
        - Support Python 2.4
          [aclark]
        
        - Doc fix
          [davidjb]
        
        1.3.0 (2012-04-06)
        ------------------
        
        - Clean up package. Buildout moved to github. Remove option to specify version (based on svn tag)
          [aclark]
        
        1.2 (2010-08-13)
        ----------------
        
        - Add option to specify version (based on svn tag)
          [aclark]
        
        - Add test stubs
          [aclark]
        
        1.1 (2010-08-13)
        ----------------
        
        - Rename and repackage as Buildout extension
          [aclark]
        
        1.0 (2009-12-19)
        ----------------
        
        - Clean up docs
          [aclark]
        
        0.1 (2009-08-07)
        ----------------
        
        - Add initial functionality
          [aclark]
        
        - Created recipe with ZopeSkel
          [aclark]
        
        Contributors
        ============
        
        Alex Clark, author
            [aclark]
        
        
        
Keywords: buildout bootstrap
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Zope Public License
