2020-08-19 09:45:02 +00:00
|
|
|
[metadata]
|
|
|
|
name = OIDC LDAP Bridge
|
|
|
|
version = 0.0.1
|
|
|
|
url = https://gitlab.com/yaal/oidc-ldap-bridge
|
|
|
|
project_urls =
|
|
|
|
Code = https://gitlab.com/yaal/oidc-ldap-bridge
|
|
|
|
Issue Tracker = https://gitlab.com/yaal/oidc-ldap-bridge/-/issues
|
|
|
|
license = MIT
|
|
|
|
license_files = LICENSE.md
|
|
|
|
maintainer = Yaal
|
|
|
|
maintainer_email = contact@yaal.fr
|
|
|
|
description = Simple OAuth2/OpenID Connect server based upon LDAP
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
|
|
|
|
[options]
|
|
|
|
packages = find:
|
|
|
|
include_package_data = true
|
|
|
|
python_requires = >= 3.6
|
|
|
|
install_requires =
|
2020-08-28 08:12:43 +00:00
|
|
|
# Until https://github.com/lepture/authlib/pull/261 is merged
|
|
|
|
authlib @ git+https://github.com/azmeuk/authlib.git@rfc8414-is-secure-transport
|
2020-08-19 09:45:02 +00:00
|
|
|
flask
|
|
|
|
flask-babel
|
|
|
|
flask-wtf
|
|
|
|
python-ldap
|
|
|
|
toml
|
|
|
|
|
2020-08-18 15:39:34 +00:00
|
|
|
[tox:tox]
|
|
|
|
envlist =
|
|
|
|
py36
|
|
|
|
py37
|
|
|
|
py38
|
2020-08-19 07:18:38 +00:00
|
|
|
coverage
|
2020-08-18 15:39:34 +00:00
|
|
|
skipsdist=True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
install_command = pip install {packages}
|
2020-08-19 07:09:22 +00:00
|
|
|
commands = {envbindir}/pytest --showlocals --full-trace {posargs}
|
2020-08-19 07:18:38 +00:00
|
|
|
deps =
|
2020-08-19 09:45:02 +00:00
|
|
|
--editable .
|
2020-08-19 08:28:28 +00:00
|
|
|
flask-webtest
|
2020-08-19 07:18:38 +00:00
|
|
|
pytest
|
|
|
|
pdbpp
|
|
|
|
|
|
|
|
[testenv:coverage]
|
|
|
|
skip_install = true
|
|
|
|
deps =
|
2020-08-19 09:45:02 +00:00
|
|
|
--editable .
|
2020-08-19 08:28:28 +00:00
|
|
|
flask-webtest
|
2020-08-19 07:18:38 +00:00
|
|
|
pdbpp
|
|
|
|
pytest
|
|
|
|
pytest-coverage
|
|
|
|
|
|
|
|
commands =
|
|
|
|
{envbindir}/pytest --cov {posargs}
|
|
|
|
coverage html
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
source =
|
|
|
|
web
|
|
|
|
tests
|