-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 834 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 834 Bytes
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
[tool.poetry]
name = "django-okta-auth"
version = "0.8.0"
description = "Django Authentication for Okta OpenID"
authors = ["Matt Magin <matt.magin@cmv.com.au>"]
license = "MIT"
packages = [
{include = "okta_oauth2"}
]
readme = "README.md"
homepage = "https://github.com/AzMoo/django-okta-auth"
repository = "https://github.com/AzMoo/django-okta-auth"
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=1.11.0"
requests = "^2.22.0"
PyJWT = "^2"
python-jose = {version = "^3.1.0", extras = ["cryptography"]}
[tool.poetry.dev-dependencies]
pre-commit = "^3.1.1"
rope = "^0.16.0"
pytest = "^7.2"
pytest-django = "^4.5"
mypy = "^1.1"
black = {version = "^23.1.0", allow-prereleases = true}
flake8 = "^3.8.4"
[tool.bandit]
exclude_dirs = ["tests"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"