|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=77", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "drf-simple-oauth2" |
| 7 | +version = "1.0.2" |
| 8 | +description = "Simple OAuth2 client package allowing to define OAuth2 / OpenID providers through settings." |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE*"] |
| 13 | +authors = [{ name = "Quentin Coumes (Codoc)", email = "quentin@codoc.co" }] |
| 14 | +keywords = ["django", "simple_oauth2", "oauth2", "oauth", "openid", "authentication"] |
| 15 | + |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 5 - Production/Stable", |
| 18 | + "Framework :: Django", |
| 19 | + "Framework :: Django :: 4.2", |
| 20 | + "Framework :: Django :: 5", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Natural Language :: English", |
| 23 | + "Programming Language :: Python :: 3 :: Only", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "Topic :: Internet :: WWW/HTTP", |
| 29 | + "Topic :: Security :: Cryptography", |
| 30 | +] |
| 31 | + |
| 32 | +dependencies = [ |
| 33 | + "django>=4.0.0,<6.0.0", |
| 34 | + "djangorestframework>=3.0.0,<4.0.0", |
| 35 | + "djangorestframework-simplejwt>=5.0.0,<6.0.0", |
| 36 | + "pyjwt>=2.6.0,<3.0.0", |
| 37 | + "requests>=2.32.0,<3.0.0", |
| 38 | +] |
| 39 | + |
| 40 | +[project.urls] |
| 41 | +Homepage = "https://github.com/Codoc-os/drf-simple-oauth2" |
| 42 | +Documentation = "https://drf-simple-oauth2.readthedocs.io/en/latest/" |
| 43 | +Changelog = "https://github.com/Codoc-os/drf-simple-oauth2/blob/main/CHANGELOG.md" |
| 44 | +Issues = "https://github.com/Codoc-os/drf-simple-oauth2/issues" |
| 45 | + |
| 46 | +[tool.setuptools] |
| 47 | +include-package-data = true |
| 48 | + |
| 49 | +[tool.setuptools.packages.find] |
| 50 | +include = ["simple_oauth2", "simple_oauth2.*"] |
0 commit comments