Metadata-Version: 2.1
Name: flaat
Version: 1.1.12
Summary: User authorization for OIDC authenticated python web APIs.
Home-page: https://github.com/indigo-dc/flaat
Author: Marcus Hardt
Author-email: hardt@kit.edu
License: MIT
Project-URL: Bug Tracker, https://github.com/indigo-dc/flaat/issues
Project-URL: Documentation, https://flaat.readthedocs.io/en/latest/
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE
Requires-Dist: aarc-entitlement (==1.*)
Requires-Dist: cachetools (==5.*)
Requires-Dist: configargparse (==1.*)
Requires-Dist: cryptography (>=37)
Requires-Dist: humanfriendly (==10.*)
Requires-Dist: liboidcagent (==0.*)
Requires-Dist: pyjwt[crypto] (>=2.4)
Requires-Dist: requests (>=2.31)
Provides-Extra: aiohttp
Requires-Dist: aiohttp ; extra == 'aiohttp'
Provides-Extra: fastapi
Requires-Dist: fastapi (>=0.61.2) ; extra == 'fastapi'
Provides-Extra: flask
Requires-Dist: Flask ; extra == 'flask'
Provides-Extra: test
Requires-Dist: aiohttp ; extra == 'test'
Requires-Dist: fastapi[all] (>=0.61.2) ; extra == 'test'
Requires-Dist: flask ; extra == 'test'
Requires-Dist: pylint-pytest ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-aiohttp ; extra == 'test'
Requires-Dist: pytest-cases ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: python-dotenv ; extra == 'test'
Requires-Dist: types-Flask ; extra == 'test'

# FLAAT

[![eosc-synergy-logo](https://readthedocs.org/projects/flaat/badge/?version=latest)](https://flaat.readthedocs.io/)
[![CI](https://github.com/indigo-dc/flaat/actions/workflows/ci.yml/badge.svg)](https://github.com/indigo-dc/flaat/actions/workflows/ci.yml)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Use decorators for authorising access to OIDC authenticated REST APIs.
Supports [Flask](https://flask.palletsprojects.com/en/2.0.x/), [FastAPI](https://fastapi.tiangolo.com/) and [AIOHTTP](https://docs.aiohttp.org/en/stable/).

## Installation

FLAAT is available on [PyPI](https://pypi.org/project/flaat/). Install using `pip`:

```bash
pip install flaat
```

You can also install from the git repository:

```bash
git clone https://github.com/indigo-dc/flaat
pip install -e ./flaat
```

## Documentation

The documentation is available at [readthedocs](https://flaat.readthedocs.io/en/latest/).

## Development

Instructions on development, testing and releasing versions can be found [here](https://flaat.readthedocs.io/en/latest/flaat/development.html).

## License

FLAAT is provided under the [MIT License](https://opensource.org/licenses/MIT).

