-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
79 lines (70 loc) · 2.02 KB
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
[build-system]
requires = [
"hatchling==1.27.0",
"hatch-vcs==0.5.0",
"pyotp==2.9.0",
"qrcode==8.2",
"pyzbar==0.1.9",
"pillow==12.1.0",
]
build-backend = "hatchling.build"
[project]
name = "pyauthenticator"
dynamic = ["version"]
description = "Similar to the Google authenticator just written in python."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Jan Janssen", email = "jan.janssen@outlook.com" },
]
keywords = ["authenticator", "2FA", "MFA"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = [
"pyotp==2.9.0",
"qrcode==8.2",
"pyzbar==0.1.9",
"pillow==12.1.0",
]
[project.urls]
Homepage = "https://github.com/jan-janssen/pyauthenticator"
Documentation = "https://github.com/jan-janssen/pyauthenticator/blob/master/README.md"
Source = "https://github.com/jan-janssen/pyauthenticator"
Tracker = "https://github.com/jan-janssen/pyauthenticator/issues"
[project.scripts]
pyauthenticator = "pyauthenticator._cmd:command_line_parser"
[tool.hatch.build]
include = [
"src/pyauthenticator"
]
[tool.hatch.build.hooks.vcs]
version-file = "src/pyauthenticator/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"src/pyauthenticator"
]
[tool.hatch.build.targets.wheel]
packages = [
"src/pyauthenticator"
]
[tool.hatch.version]
source = "vcs"
path = "src/pyauthenticator/_version.py"
[tool.coverage.run]
source = ["pyauthenticator"]
command_line = "-m unittest discover tests"