forked from ratanboddu/keycloak-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "keycloak"
version = "3.1.0"
description = "Python client for Keycloak IAM"
authors = ["Akhil Lawrence <akhilputhiry@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
PyYAML = "^5.4.1"
cached-property = "^1.5.2"
Sphinx = {version = "^4.0.2", optional = true}
sphinx-rtd-theme = {version = "^0.5.2", optional = true}
Flask = {version = "^2.0.1", optional = true}
starlette = {version = "^0.15.0", optional = true}
Django = {version = "^3.2.4", optional = true}
uvicorn = {version = "^0.14.0", optional = true}
httpx = "^0.18.2"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme"]
extensions = ["Flask", "starlette", "Django", "uvicorn"]
[tool.poetry.dev-dependencies]
isort = "^5.9.1"
black = "^21.6b0"
mypy = "^0.910"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
disallow_untypes_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "*.py"
python_functions = "test_*"
addopts = "--cov=keycloak --cov-report term-missing --cov-report xml"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"