-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (69 loc) · 2.15 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
[tool.project]
license = { text = "MIT License" }
repository = "https://github.com/rpm5099/mfawesome"
keywords = ["totp", "hotp", "2fa", "mfa", "cli"]
[tool.poetry]
name = "mfawesome"
version = "0.1.76"
description = "CLI Multi-Factor Authenticator Tool"
authors = ["Rob Milloy <[email protected]>"]
readme = "README.md"
packages = [{ include = "mfawesome" }, { include = "mfawesome_tests" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Jupyter",
"License :: Freeware",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: Desktop Environment",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: Office/Business",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">= 3.10,< 4.0"
rich = "*"
PyYAML = "*"
numpy = "*"
cryptography = ">= 42.0"
opencv-contrib-python-headless = ">= 4.5"
protobuf = "*"
qrcode = { extras = ["pil"], version = ">= 7.4" }
[tool.poetry.group.dev.dependencies]
dnspython = { version = "*", optional = true }
ruff = ">= 0.6.3"
[tool.poetry.group.test.dependencies]
pytest = ">= 8.3.3"
pytest-cov = ">= 5.0.0"
coverage = ">= 7.6.3"
[tool.poetry.extras]
all = ["ruff", "pytest", "pytest-cov", "coverage", "dnspython"]
[tool.poetry.scripts]
mfa = "mfawesome.exec_mfawesome:main"
mfaclock = "mfawesome.ntptime:Clock"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["mfawesome"]
command_line = "-m pytest"
[tool.coverage.report]
include = ["mfawesome/*.py"]
show_missing = true
[tool.coverage.xml]
output = "coverage.xml"