Metadata-Version: 2.1
Name: Flask-IIIF
Version: 0.3.2
Summary: Flask-IIIF extension provides easy IIIF API standard integration.
Home-page: http://github.com/inveniosoftware/flask-iiif/
Author: Invenio collaboration
Author-email: info@inveniosoftware.org
License: BSD
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Flask
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Development Status :: 5 - Production/Stable
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: redis
Provides-Extra: all
Requires-Dist: Flask (>=0.10.1)
Requires-Dist: Flask-RESTful (>=0.2.12)
Requires-Dist: blinker (>=1.4)
Requires-Dist: six (>=1.7.2)
Requires-Dist: pillow (>=3.4)
Provides-Extra: all
Requires-Dist: Sphinx (>=1.4.2); extra == 'all'
Requires-Dist: flask-testing (>=0.4.1); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (<4.0,>=3.7); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: pydocstyle (>=2.0.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest (>=2.6.1); extra == 'all'
Requires-Dist: redis (>=2.10.5); extra == 'all'
Requires-Dist: Sphinx (>=1.4.2); extra == 'all'
Requires-Dist: flask-testing (>=0.4.1); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (<4.0,>=3.7); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: pydocstyle (>=2.0.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest (>=2.6.1); extra == 'all'
Requires-Dist: redis (>=2.10.5); extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.4.2); extra == 'docs'
Provides-Extra: redis
Requires-Dist: redis (>=2.10.5); extra == 'redis'
Provides-Extra: tests
Requires-Dist: flask-testing (>=0.4.1); extra == 'tests'
Requires-Dist: check-manifest (>=0.25); extra == 'tests'
Requires-Dist: coverage (<4.0,>=3.7); extra == 'tests'
Requires-Dist: isort (>=4.2.2); extra == 'tests'
Requires-Dist: pydocstyle (>=2.0.0); extra == 'tests'
Requires-Dist: pytest-cache (>=1.0); extra == 'tests'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'tests'
Requires-Dist: pytest (>=2.6.1); extra == 'tests'

============
 Flask-IIIF
============

.. image:: https://img.shields.io/travis/inveniosoftware/flask-iiif.svg
        :target: https://travis-ci.org/inveniosoftware/flask-iiif

.. image:: https://img.shields.io/coveralls/inveniosoftware/flask-iiif.svg
        :target: https://coveralls.io/r/inveniosoftware/flask-iiif

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

.. image:: https://img.shields.io/pypi/dm/flask-iiif.svg
        :target: https://pypi.python.org/pypi/flask-iiif

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

About
=====

Flask-IIIF is a Flask extension permitting easy integration with the
International Image Interoperability Framework (IIIF) API standards.

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

Flask-IIIF is on PyPI so all you need is: ::

    pip install Flask-IIIF

Documentation
=============

Documentation is readable at http://flask-iiif.readthedocs.io or can be
built using Sphinx: ::

    git submodule init
    git submodule update
    pip install Sphinx
    python setup.py build_sphinx

Testing
=======
Running the test suite is as simple as: ::

    python setup.py test

or, to also show code coverage: ::

    ./run-tests.sh


