-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.34 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
[tool.poetry]
name = "solokeys-gui"
version = "0.1.0"
description = "Platform-independent GUI for managing SoloKeys Solo 2 FIDO2 tokens"
authors = ["Manuel Domke <manuel@leetronics.de>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
packages = [
{include = "solo_gui", from = "src"},
]
include = [
{ path = "src/solo_gui/resources/*.png", format = ["sdist", "wheel"] },
{ path = "src/solo_gui/resources/*.ico", format = ["sdist", "wheel"] },
{ path = "src/solo_gui/resources/*.icns", format = ["sdist", "wheel"] },
]
[tool.poetry.dependencies]
python = "^3.10"
pyside6 = "^6.6.0"
fido2 = "^1.1.2"
pyusb = "^1.2.1"
requests = "^2.31.0"
qtawesome = "^1.3.0"
pyscard = "^2.0.9"
pywin32 = {version = ">=306", markers = "sys_platform == 'win32'"}
hidapi = ">=0.14.0.post2"
solo2 = {git = "https://github.com/leetronics/solo2-python.git", branch = "main"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-qt = "^4.2.0"
black = "^23.11.0"
mypy = "^1.7.1"
pyinstaller = "^6.2.0"
[tool.poetry.scripts]
solokeys-gui = "solo_gui.main:main"
solokeys-secrets-host = "solo_gui.native_host:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true