-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
62 lines (53 loc) · 1.4 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-mfa3"
version = "0.13.0"
description = "multi factor authentication for django"
readme = "README.md"
license = {text = "MIT"}
keywords = ["django", "mfa", "two-factor-authentication", "webauthn", "fido2"]
authors = [
{name = "Tobias Bengfort", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyotp",
"fido2>=1.0.0",
# https://github.com/lincolnloop/python-qrcode/issues/317
"qrcode>=7.1,<7.4",
"django>=3.2",
]
[project.urls]
Homepage = "https://github.com/xi/django-mfa3"
[tool.setuptools.packages.find]
include = ["mfa*"]
[tool.setuptools.package-data]
mfa = [
"templates/**/*.html",
"templates/**/*.txt",
"static/**/*.js",
"locale/**/*.po",
"locale/**/*.mo",
]
[tool.ruff]
exclude = ["migrations"]
[tool.ruff.lint]
select = ["E", "F", "W", "C9", "I", "Q", "UP", "RUF"]
ignore = ["RUF012"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint.isort]
force-single-line = true
[tool.coverage.run]
source = ["mfa"]