-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.1 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
[project]
name = "hackauth"
version = "0.1.5"
requires-python = ">=3.9"
description = "A polished CLI/TUI authenticator and TOTP manager"
readme = "README.md"
license = { text = "GPLv3" }
authors = [
{ name = "Wenfeng Ye", email = "wenfeng110402@icloud.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Security",
"Topic :: Utilities"
]
dependencies = [
"click",
"rich",
"questionary",
"pyotp",
"qrcode",
"textual==7.5.0",
"pyperclip",
"opencv-python-headless; platform_system!='Windows'", # Example conditional, but for now lets keep it simple
"opencv-python",
]
[project.urls]
"Homepage" = "https://github.com/wenfeng110402/Authenticator"
"Bug Tracker" = "https://github.com/wenfeng110402/Authenticator/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/authenticator"]
[project.scripts]
auth = "authenticator.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"