-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
74 lines (64 loc) · 1.68 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
[build-system]
requires = [
"setuptools",
"build"
]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
use_parentheses = true
line_length = 79
[tool.black]
line_length = 79
skip_string_normalization = true
skip_magic_trailing_comma = true
preview = true
target-version = ['py37']
[project]
name = "open2fa"
version = '1.4.7'
authors = [
{ name="Cary Carter", email="[email protected]" },
]
description = "A 2FA CLI tool for generating 2FA codes using TOTP secrets, with an optional SECURE remote api, and an optional web ui enabling 2FA code generation from any device"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"logfunc<3",
"cryptography<42",
"pyshared<2",
"base58==2.1.1",
]
[project.scripts]
open2fa = "open2fa.cli:entry_point"
[project.urls]
Homepage = "https://open2fa.liberfy.ai"
Repository = "https://github.com/cc-d/open2fa"
Issues = "https://github.com/cc-d/open2fa/issues"
Server = "https://github.com/cc-d/open2fa-server"
Documentation = "https://github.com/cc-d/open2fa"
Changelog = "https://github.com/cc-d/open2fa/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-html",
"black",
"isort",
"flake8",
"twine",
"build",
"pyshared",
]