Metadata-Version: 2.0
Name: requirements-builder
Version: 0.2.3
Summary: Build requirements files from setup.py requirements.
Home-page: https://github.com/inveniosoftware/requirements-builder
Author: Invenio Collaboration
Author-email: info@inveniosoftware.org
License: BSD
Keywords: requirements-builder
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: click (>=5.0.0)
Requires-Dist: mock (>=1.3.0)
Provides-Extra: all
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (>=4.0); extra == 'all'
Requires-Dist: isort (>=4.0.0); extra == 'all'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=2.0.0); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest (>=2.8.0); extra == 'all'
Requires-Dist: Sphinx (>=1.4.2,<1.5.0); extra == 'all'
Requires-Dist: docutils (<0.13,>=0.12); extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.4.2,<1.5.0); extra == 'docs'
Requires-Dist: docutils (<0.13,>=0.12); extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.25); extra == 'tests'
Requires-Dist: coverage (>=4.0); extra == 'tests'
Requires-Dist: isort (>=4.0.0); extra == 'tests'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'tests'
Requires-Dist: pytest-cache (>=1.0); extra == 'tests'
Requires-Dist: pytest-cov (>=2.0.0); extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'tests'
Requires-Dist: pytest (>=2.8.0); extra == 'tests'

..
    This file is part of Requirements-Builder
    Copyright (C) 2015 CERN.

    Requirements-Builder is free software; you can redistribute it and/or
    modify it under the terms of the Revised BSD License; see LICENSE
    file for more details.

======================
 Requirements-Builder
======================

.. image:: https://img.shields.io/travis/inveniosoftware/requirements-builder.svg
        :target: https://travis-ci.org/inveniosoftware/requirements-builder

.. image:: https://img.shields.io/coveralls/inveniosoftware/requirements-builder.svg
        :target: https://coveralls.io/r/inveniosoftware/requirements-builder

.. image:: https://img.shields.io/github/tag/inveniosoftware/requirements-builder.svg
        :target: https://github.com/inveniosoftware/requirements-builder/releases

.. image:: https://img.shields.io/pypi/dm/requirements-builder.svg
        :target: https://pypi.python.org/pypi/requirements-builder

.. image:: https://img.shields.io/github/license/inveniosoftware/requirements-builder.svg
        :target: https://github.com/inveniosoftware/requirements-builder/blob/master/LICENSE

About
=====

Build requirements from setup.py to test your package against minimum,
latest and development versions of your package dependencies. Particularly
useful when combined with your CI systems build matrix.

Installation
============

Requirements-Builder is on PyPI so all you need is::

    $ pip install requirements-builder

Or, if you have virtualenvwrapper installed::

    $ mkvirtualenv requirements-builder
    $ pip install requirements-builder

Testing
=======

Running the test suite is as simple as::

    $ ./run-tests.sh


..
    This file is part of Requirements-Builder
    Copyright (C) 2015, 2016 CERN.

    Requirements-Builder is free software; you can redistribute it and/or
    modify it under the terms of the Revised BSD License; see LICENSE
    file for more details.



Changes
=======

Version 0.2.3 (released 2017-03-09)
-----------------------------------

Bug fixes
~~~~~~~~~

- Fixes the issue with conditions on extra_require not being taken into
  account.

Version 0.2.2 (released 2017-02-01)
-----------------------------------

Bug fixes
~~~~~~~~~

- Fixes issue with properly building requirements for packages with version
  markers.

Improvements
~~~~~~~~~~~~

- Adds YAPF auto-formatting configuration.

Version 0.2.1 (released 2017-01-23)
-----------------------------------

Bug fixes
~~~~~~~~~

- Accepts non-`-e` packages from devel file.
- Sphinx 1.5+ drops support for Python 2.6 and 3.3.
- Adds Python 3.6 support.
- Makes `--extras` option accepting comma separated values as
  described in help.  (#14)


Version 0.2.0 (released 2016-09-13)
-----------------------------------

New features
~~~~~~~~~~~~

- Adds an output option which is useful in the tox context where one
  cannot redirect the output to a file. See more at
  https://bitbucket.org/hpk42/tox/issues/73/pipe-output-of-command-into-file

Bug fixes
~~~~~~~~~

- Fixes problem when the setup.py command try to import the package
  its about to install in order to get the information like the
  version. E.g. Django does that.
- Fixes problem when the setup.py command plays with `__file__`  to
  read, exec, or whatever.


Version 0.1.0 (released 2015-10-05)
-----------------------------------

- Initial public release


