2021-06-11 11:32:41 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "keycloak-collective-portal"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Community Keycloak SSO user management."
|
|
|
|
authors = ["decentral1se <hi@decentral1.se>"]
|
|
|
|
license = "AGPLv3"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
fastapi = "^0.65.2"
|
|
|
|
uvicorn = {extras = ["standard"], version = "^0.14.0"}
|
|
|
|
Jinja2 = "^3.0.1"
|
2021-06-11 12:23:13 +00:00
|
|
|
itsdangerous = "^2.0.1"
|
2021-06-11 13:58:28 +00:00
|
|
|
Authlib = "^0.15.4"
|
|
|
|
httpx = "^0.18.1"
|
2021-06-11 22:53:57 +00:00
|
|
|
aioredis = "^1.3.1"
|
2021-06-12 00:15:50 +00:00
|
|
|
humanize = "^3.7.1"
|
2021-06-12 17:46:48 +00:00
|
|
|
python-multipart = "^0.0.5"
|
|
|
|
python-keycloak = "^0.25.0"
|
2021-06-13 09:43:30 +00:00
|
|
|
aiofiles = "^0.7.0"
|
2022-01-10 09:27:42 +00:00
|
|
|
email-validator = "^1.1.3"
|
2021-06-11 11:32:41 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
black = "^21.6b0"
|
|
|
|
flake8 = "^3.9.2"
|
|
|
|
isort = "^5.8.0"
|
|
|
|
mypy = "^0.902"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 80
|
|
|
|
target-version = ["py39"]
|
|
|
|
include = '\.pyi?$'
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
include_trailing_comma = true
|
|
|
|
known_first_party = "keycloak_collective_portal"
|
|
|
|
known_third_party = "pytest"
|
|
|
|
line_length = 80
|
|
|
|
multi_line_output = 3
|
|
|
|
skip = ".tox"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|