-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
84 lines (70 loc) · 2.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
dynamic = ["version"]
name="django-pyoidc"
authors=[
{name="Régis Leroy (Makina Corpus)", email="[email protected]"},
{name="Paul Florence (Makina Corpus)", email="[email protected]"}
]
classifiers=["Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Framework :: Django",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security"
]
description="Authenticate your users using OpenID Connect (OIDC)"
requires-python=">=3.8"
keywords=["openid","oidc","django","sso","single-sign-on", "openid-connect", "authentication"]
readme="README.md"
license="GPL-3.0-only"
dependencies = [
"oic==1.7.0",
"django>=3.2",
"jsonpickle",
"jwt",
"pycryptodomex",
]
license-files = ['LICENSE']
[project.urls]
repository="https://github.com/makinacorpus/django_pyoidc"
[project.optional-dependencies]
drf = ['djangorestframework', 'drf-spectacular']
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[tool.mypy]
plugins = ["mypy_django_plugin.main", "mypy_drf_plugin.main"]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
strict_equality = true
check_untyped_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_any_generics = true
disallow_any_unimported = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_reexport = true
no_implicit_optional = true
show_error_codes = true
extra_checks = true
[tool.django-stubs]
django_settings_module = "mypy_settings"
strict_settings = false
[tool.hatch.version]
source = "versioningit"
[tool.versioningit.vcs]
method = "git"