Metadata-Version: 2.1
Name: flask-sso-saml
Version: 0.2.0
Summary: Flask extension that provides SSO SAML integration.
Home-page: https://github.com/egabancho/flask-sso-saml
Author: Esteban J. G. Gabancho
Author-email: egabancho@gmail.com
License: MIT
Keywords: Flask SSO SAML
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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.6
Classifier: Development Status :: 1 - Planning
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: Flask (>=1.0)
Requires-Dist: python3-saml (>=1.5.0)
Provides-Extra: all
Requires-Dist: Sphinx (>=1.5.1) ; extra == 'all'
Requires-Dist: check-manifest (>=0.25) ; extra == 'all'
Requires-Dist: coverage (>=4.0) ; extra == 'all'
Requires-Dist: isort (>=4.3.3) ; extra == 'all'
Requires-Dist: mock (>=2.0.0) ; extra == 'all'
Requires-Dist: pydocstyle (>=2.0.0) ; extra == 'all'
Requires-Dist: pytest-cov (>=2.5.1) ; extra == 'all'
Requires-Dist: pytest-freezegun (>=0.2.0) ; extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6) ; extra == 'all'
Requires-Dist: pytest (>=3.8.2) ; extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.5.1) ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.25) ; extra == 'tests'
Requires-Dist: coverage (>=4.0) ; extra == 'tests'
Requires-Dist: isort (>=4.3.3) ; extra == 'tests'
Requires-Dist: mock (>=2.0.0) ; extra == 'tests'
Requires-Dist: pydocstyle (>=2.0.0) ; extra == 'tests'
Requires-Dist: pytest-cov (>=2.5.1) ; extra == 'tests'
Requires-Dist: pytest-freezegun (>=0.2.0) ; extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6) ; extra == 'tests'
Requires-Dist: pytest (>=3.8.2) ; extra == 'tests'

..
    Copyright (C) 2019 Esteban J. G. Gabancho.

    Flask-SSO-SAML is free software; you can redistribute it and/or modify
    it under the terms of the MIT License; see LICENSE file for more details.

================
 Flask-SSO-SAML
================

.. image:: https://img.shields.io/travis/egabancho/flask-sso-saml.svg
        :target: https://travis-ci.org/egabancho/flask-sso-saml

.. image:: https://img.shields.io/coveralls/egabancho/flask-sso-saml.svg
        :target: https://coveralls.io/r/egabancho/flask-sso-saml

.. image:: https://img.shields.io/github/tag/egabancho/flask-sso-saml.svg
        :target: https://github.com/egabancho/flask-sso-saml/releases

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

.. image:: https://img.shields.io/github/license/egabancho/flask-sso-saml.svg
        :target: https://github.com/egabancho/flask-sso-saml/blob/master/LICENSE

Flask extension that provides SSO SAML integration.


Features:

- Customizable endpoints.
- Several Identity Providers under the same application.
- Customizable handlers to allow decide what happens on each type of request.

Further documentation is available on
https://flask-sso-saml.readthedocs.io/


..
    Copyright (C) 2019, 2022 Esteban J. G. Gabancho.

    Flask-SSO-SAML is free software; you can redistribute it and/or modify
    it under the terms of the MIT License; see LICENSE file for more details.

Changes
=======

Version 0.1.0 (released 2019-04-19)

- Initial public release.

Version 0.2.0 (released 2022-10-10)

- Allow settings to be written as JSON files.
- Updates to remove deprecations warnings and new library versions.
