-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
52 lines (48 loc) · 1.36 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
48
49
50
51
52
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django_uw_keycloak"
version = "2.0.3"
description = "Middleware to allow authorization using Keycloak and Django"
authors = [
"Ubiwhere <urbanplatform@ubiwhere.com>",
"Moritz Ulmer <moritz.ulmer@posteo.de>",
]
license = "MIT"
repository = "https://github.com/urbanplatform/django-keycloak-auth"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Security",
]
keywords = ["keycloak", "django", "authorization"]
readme = "README.md"
packages = [
{ include = "django_keycloak", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
django = ">=2.2"
djangorestframework = ">=3.0"
dry-rest-permissions = ">=0.1"
python-keycloak = ">=2.6.0"
cachetools = ">=5.0.0"
[tool.poetry.dev-dependencies]
black = "~=23.1"
coverage = "~=7.1"
ipdb = "~=0.13"
[tool.black]
target-version = ['py37']
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
.*/migrations/.* # exclude auto-generated migration files
| .*_pb2.py # example: exclude autogenerated Protocol Buffer files anywhere in the project
)
'''