-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This pyproject.toml seems to work to build a new package
# when `setuptools==67.6.1` is installed.
[project]
name = "djaodjin-signup"
dynamic = ["version"]
description = "Django app for user authentication"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
keywords = ["signup", "authentication", "frictionless", "2fa", "mfa",
"otp", "oauth", "saml"]
authors = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
maintainers = [
{name = "The DjaoDjin Team", email = "[email protected]"}
]
classifiers = [
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"boto3>=1.4.4",
"Django>=1.11",
"django-fernet-fields>=0.6",
"django-phonenumber-field>=2.4.0",
"django-recaptcha>=2.0",
"djangorestframework>=3.9",
"phonenumbers>=8.12.6",
"PyJWT>=1.6.1",
"pyotp>=2.8.0",
"python3-saml>=1.2.1", # This will require transitively to install native
# package xmlsec1-devel and xmlsec1-openssl.
"social-auth-app-django>=4.0.0", # v1.2.0 does not support Django>=2.1
"social-auth-core>=4.2.0", # before 4.2.0 `AzureADOAuth2` is not
# picking up email correctly.
]
[project.optional-dependencies]
ldap = [
"python-ldap>=3.2.0"
]
[project.urls]
repository = "https://github.com/djaodjin/djaodjin-signup"
documentation = "https://djaodjin-signup.readthedocs.io/"
changelog = "https://github.com/djaodjin/djaodjin-signup/changelog"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["signup*"]
[tool.setuptools.package-data]
signup = [
'templates/accounts/*.html',
'templates/accounts/activate/*.html',
'templates/contacts/*.html',
'templates/notification/*.eml',
'templates/users/*.html',
'static/js/*.js'
]
[tool.setuptools.dynamic]
version = {attr = "signup.__version__"}