forked from mozilla/mozilla-django-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
90 lines (83 loc) · 2.34 KB
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
85
86
87
88
89
90
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "mozilla-django-oidc"
dynamic = ["version", "readme"]
description = "A lightweight authentication and access management library for integration with OpenID Connect enabled authentication services."
authors = [
{ name = "Tasos Katsoulas", email = "akatsoulas@mozilla.com" },
{ name = "John Giannelos", email = "jgiannelos@mozilla.com" }
]
license = { text = "MPL-2.0" }
keywords = ["mozilla-django-oidc"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Django >= 3.2",
"pyjwt",
"requests",
"cryptography",
]
[project.urls]
Homepage = "https://github.com/mozilla/mozilla-django-oidc"
Documentation = "https://mozilla-django-oidc.readthedocs.io"
Changelog = "https://github.com/mozilla/mozilla-django-oidc/releases"
[project.optional-dependencies]
drf = [
"djangorestframework>=3.14",
]
test = [
"bumpversion",
"ipython",
"ipdb",
"djangorestframework>=3.14",
"pre-commit",
"responses",
"importlib-metadata; python_version < '3.10'",
"splinter[selenium]>=0.21.0",
"coverage",
"tox",
]
lint = [
"flake8",
]
build = [
"build",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"readthedocs-sphinx-search",
]
dev = [
"mozilla-django-oidc[test,docs,drf,lint,build]",
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "mozilla_django_oidc.__version__" }
readme = { file = ["README.rst"], "content-type" = "text/x-rst" }
[tool.setuptools.packages.find]
include = ["mozilla_django_oidc", "mozilla_django_oidc.*"]
exclude = ["build*", "dist*", "*.egg-info*"]