forked from valohai/django-allauth-2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (77 loc) · 1.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-allauth-2fa"
dynamic = ["version"]
description = "Adds two factor authentication to django-allauth"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [
{ name = "Víðir Valberg Guðmundsson", email = "valberg@orn.li" },
]
keywords = [
"2fa",
"allauth",
"auth",
"authentication",
"django",
"factor",
"otp",
"two",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"django-allauth>=0.53.0",
"django-otp>=1.1.0",
"django>=3.2",
"qrcode>=5.3",
]
[project.urls]
Homepage = "https://github.com/valohai/django-allauth-2fa"
[tool.hatch.version]
path = "allauth_2fa/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/allauth_2fa",
]
[tool.hatch.build.targets.wheel]
packages = ["/allauth_2fa"]
[tool.ruff]
target-version = "py37"
exclude = [
".git",
".tox",
"__pycache__",
]
select = [
"B",
"COM",
"E",
"F",
"I",
"S",
"UP",
"W",
]
[tool.ruff.isort]
force-single-line = true
[tool.ruff.per-file-ignores]
"tests/**" = ["S101", "S105"]