canaille-globuzma/setup.cfg
2020-08-19 11:45:02 +02:00

61 lines
1.1 KiB
INI

[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 =
authlib
flask
flask-babel
flask-wtf
python-ldap
toml
[tox:tox]
envlist =
py36
py37
py38
coverage
skipsdist=True
[testenv]
install_command = pip install {packages}
commands = {envbindir}/pytest --showlocals --full-trace {posargs}
deps =
--editable .
flask-webtest
pytest
pdbpp
[testenv:coverage]
skip_install = true
deps =
--editable .
flask-webtest
pdbpp
pytest
pytest-coverage
commands =
{envbindir}/pytest --cov {posargs}
coverage html
[coverage:run]
source =
web
tests