-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 679 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 679 Bytes
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
[project]
name = "django-2fa"
description = "2 Factor authenication application for Django"
authors = [
{name = "Paul Bailey", email = "paul@neutron.studio"},
]
dependencies = [
"django-fernet-encrypted-fields~=0.0",
"pyotp~=2.6",
"fido2~=0.9",
"haikunator>=2.1.0",
"pyjwt>=2.3.0",
]
requires-python = ">=3.7"
dynamic = ["version"]
license = {text = "MIT"}
readme = "README.md"
[project.urls]
homepage = "https://github.com/neutron-sync/django-2fa"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
version = {from = "django_2fa/__init__.py"}
[tool.pdm.scripts]
publish = "pdm publish --username pizzapanther"