Metadata-Version: 1.1
Name: buildout.requirements
Version: 0.2.2
Summary: Dump buildout picked versions as a pip compatible requirements.txt file. Fork of buildout.dumprequirements.
Home-page: https://github.com/liqd/buildout.requirements
Author: Yves Müller
Author-email: yves.mueller@liqd.de
License: GPL
Description: =========================
        buildout.requirements
        =========================
        
        A simple buildout extension that creates a requirements.txt file for pip.
        
        
        This is a fork of buildout.requirements which is more or less a copy of
        buildout.dumprequirements. All credit goes to the authors of that project.
        
        .. warning:: ``buildout.dumppickedversions`` (and therefore also ``buildout.dumprequirements`` and
                     also ``buildout.requirements``) does some *nasty* stuff to get its job done. Namely
                     it monkeypatches ``zc.buildout.easy_install._log_requirement``,
                     ``zc.buildout.easy_install.Installer._get_dist`` and ``logging.shutdown``. Because both
                     extensions monkeypatch the same methods, it is currently not possible to use
                     ``buildout.dumppickedversions`` and ``buildout.dumprequirements`` at the same time.
                     I'm not quite sure how to solve this. Probably we'll have to support the functionality
                     of both extensions in one package.
        
        Usage
        =====
        
        Add ``buildout.requirements`` as an extension to the ``[buildout]`` section::
        
            [buildout]
            extensions = buildout.requirements
            dump-requirements-file = requirements.txt
            overwrite-requirements-file = true
        
        ``dump-requirements-file`` defines the file the requirement list will be written to. If it is undefined the
        package list will be printed to the console. Setting ``overwrite-requirements-file`` to ``false`` will prevent
        ``buildout.dumprequirements`` from overwriting an existing file. The setting defaults to ``true``.
        
        Contributors
        ============
        
        - Yves Müller, port to Python 3 and Buildout 2
        - Stefan Foulis, Author of buildout.dumprequirements
        - Mustapha Benali, Author of buildout.dumppickedversions
        
Keywords: buildout extension dump picked versions requirements.txt
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
