-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.54 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
[tool.poetry]
name = "django-auth0-user"
version = "0.16.0"
license = "BSD-2-Clause"
repository = "https://github.com/techdragon/django-auth0-user"
description = "Django Authentication and Authorisation using Auth0 and Python Social Auth"
keywords = ["Auth0", "Django", "Python Social Auth", "Django Rest Framework"]
authors = ["Samuel Bishop <sam@techdragon.io>"]
packages = [
{ include = "django_auth0_user", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.6"
social-auth-core = {version = "^3.2.0", extras = ["openidconnect"]}
social-auth-app-django = "^3.1.0"
cached-property = "^1.5.1"
djangorestframework = {version = "^3.10.3", optional = true}
djangorestframework-jwt = {version = "^1.11.0", optional = true}
pyjwt = {version = "^1.7.1", optional = true}
auth0-python = {version = "^3.9.1", optional = true}
[tool.poetry.dev-dependencies]
auth0-python = "^3.9.1"
django-environ = "^0.4.5"
djangorestframework = "^3.10.3"
djangorestframework-jwt = "^1.11.0"
django-extensions = "^2.2.3"
django-debug-toolbar = "^2.0"
pytest = "^5.2.0"
pytest-django = "^3.5.1"
selenium = "^3.141.0"
mimesis = "^3.3.0"
retryz = "^0.1.9"
httpretty = "^0.9.6"
pytest-server-fixtures = "^1.7.0"
pytest-selenium = "^1.17.0"
unittest2 = "^1.1.0"
django-cors-headers = "^3.1.1"
python-jose = {git = "https://github.com/techdragon/python-jose.git", branch = "fixes-for-django-auth0-user"}
[tool.poetry.extras]
drf= ["djangorestframework", "djangorestframework-jwt", "pyjwt"]
auth0= ["auth0-python", ]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"