Fedict authentication plugin for Authentic2
Go to file
Frédéric Péters 4fd018c1f2 trivial: bump black version to 22.3.0 2022-04-03 16:50:14 +02:00
debian debian: remove python2 packages from build-depends 2021-08-15 15:32:03 +02:00
src/authentic2_auth_fedict misc: add support for new bosa authn_classrefs (#63311) 2022-03-29 15:30:29 +02:00
tests tests: fix targeting of login form now that it moved 2022-02-25 10:36:24 +01:00
.git-blame-ignore-revs misc: add isort/pyupgrade notes (#60931) 2022-01-28 13:21:02 +01:00
.gitignore .gitignore 2016-04-10 14:21:33 +02:00
.pre-commit-config.yaml trivial: bump black version to 22.3.0 2022-04-03 16:50:14 +02:00
COPYING init repository with license file 2016-04-10 14:18:35 +02:00
Jenkinsfile jenkins: get back to an unusual Jenkinsfile (#61949) 2022-02-18 10:35:40 +01:00
MANIFEST.in ship js and css files 2016-05-27 13:48:56 +02:00
README misc: add isort/pyupgrade notes (#60931) 2022-01-28 13:21:02 +01:00
check-migrations.sh tests: add a tox.ini and other tox/pytest-related files (#61045) 2022-01-28 13:21:39 +01:00
getlasso3.sh tests: add a tox.ini and other tox/pytest-related files (#61045) 2022-01-28 13:21:39 +01:00
pylint.sh tests: add a tox.ini and other tox/pytest-related files (#61045) 2022-01-28 13:21:39 +01:00
setup.py trivial: apply isort & pyupgrade (#60931) 2022-01-28 13:21:02 +01:00
tox.ini tests: add a tox.ini and other tox/pytest-related files (#61045) 2022-01-28 13:21:39 +01:00

README

authentic2-auth-fedict
======================

Authentic2 plugin to authenticate against the Belgian Federal Authentication
Service provided by Fedict.

Installation
------------

Install with `pip install authentic2-auth-fedict`

Settings
========

Add `A2_AUTH_FEDICT_ENABLE = True` to your `local_settings.py` file and define
the django-mellon adapter:

  MELLON_ADAPTER = ('authentic2_auth_fedict.adapters.AuthenticAdapter',)

And appropriate django-mellon parameters (MELLON_PUBLIC_KEYS,
MELLON_PRIVATE_KEY, MELLON_IDENTITY_PROVIDERS).


Code Style
----------

black is used to format the code, using thoses parameters:

    black --target-version py37 --skip-string-normalization --line-length 110

isort is used to format the imports, using those parameter:

    isort --profile black --line-length 110

pyupgrade is used to automatically upgrade syntax, using those parameters:

    pyupgrade --keep-percent-format --py37-plus

There is .pre-commit-config.yaml to use pre-commit to automatically run black,
isort and pyupgrade before commits. (execute `pre-commit install` to install
the git hook.)


License
-------

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.