|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=61.0", |
| 4 | + "wheel" |
| 5 | +] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "mozilla-django-oidc" |
| 10 | +dynamic = ["version", "readme"] |
| 11 | +description = "A lightweight authentication and access management library for integration with OpenID Connect enabled authentication services." |
| 12 | +authors = [ |
| 13 | + { name = "Tasos Katsoulas", email = "akatsoulas@mozilla.com" }, |
| 14 | + { name = "John Giannelos", email = "jgiannelos@mozilla.com" } |
| 15 | +] |
| 16 | +license = "MPL-2.0" |
| 17 | +keywords = ["mozilla-django-oidc"] |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Framework :: Django", |
| 21 | + "Framework :: Django :: 3.2", |
| 22 | + "Framework :: Django :: 4.2", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Operating System :: MacOS", |
| 25 | + "Operating System :: POSIX :: Linux", |
| 26 | + "Natural Language :: English", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3 :: Only", |
| 29 | + "Programming Language :: Python :: 3.8", |
| 30 | + "Programming Language :: Python :: 3.9", |
| 31 | + "Programming Language :: Python :: 3.10", |
| 32 | + "Programming Language :: Python :: 3.11", |
| 33 | + "Programming Language :: Python :: 3.12", |
| 34 | +] |
| 35 | + |
| 36 | +dependencies = [ |
| 37 | + "Django >= 3.2", |
| 38 | + "pyjwt", |
| 39 | + "requests", |
| 40 | + "cryptography", |
| 41 | +] |
| 42 | + |
| 43 | +[project.urls] |
| 44 | +Homepage = "https://github.com/mozilla/mozilla-django-oidc" |
| 45 | +Documentation = "https://mozilla-django-oidc.readthedocs.io" |
| 46 | +Changelog = "https://github.com/mozilla/mozilla-django-oidc/releases" |
| 47 | + |
| 48 | +[tool.setuptools] |
| 49 | +include-package-data = true |
| 50 | +zip-safe = false |
| 51 | + |
| 52 | +[tool.setuptools.dynamic] |
| 53 | +version = { attr = "mozilla_django_oidc.__version__" } |
| 54 | +readme = { file = ["README.rst"], "content-type" = "text/x-rst" } |
| 55 | + |
| 56 | +[tool.setuptools.packages.find] |
| 57 | +include = ["mozilla_django_oidc", "mozilla_django_oidc.*"] |
| 58 | +exclude = ["build*", "dist*", "*.egg-info*"] |
0 commit comments