forked from CyberDeck/django-allauth-webauthn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (51 loc) · 1.53 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
[tool.poetry]
name = "django-allauth-webauthn"
version = "0.2.3"
description = "Webauthn-based two-factor authentication for Django allauth"
authors = ["H. Gregor Molter <[email protected]>"]
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/cyberdeck/django-allauth-webauthn"
repository = "https://github.com/cyberdeck/django-allauth-webauthn"
documentation = "https://django-allauth-webauthn.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
exclude = [
"demo/"
]
[tool.poetry.urls]
'Bug Tracker' = 'https://github.com/cyberdeck/django-allauth-webauthn/issues'
[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.2.8"
django-allauth = "^0.63.1"
webauthn = "^0.4.7"
[tool.poetry.dev-dependencies]
django-extensions = "^3.1.3"
pytest = "^7.1"
Werkzeug = "^2.0.1"
coverage = {extras = ["toml"], version = "^6.3.2"}
flake8 = "^4.0.1"
flake8-bugbear = "^22.3.23"
mypy = "^0.910"
pre-commit = "^2.15.0"
Sphinx = "^4.2.0"
sphinx-autobuild = "^2021.3.14"
sphinx-rtd-theme = "^1.0.0"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
django-upgrade = "^1.15.0"
[tool.coverage.run]
branch = true
omit = [".*", "*/site-packages/*", "manage.py", "tests/*"]
[tool.coverage.report]
fail_under = 100
[tool.coverage.html]
directory = "coverage_report"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"