forked from rnicoll/HWI-dogecoin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.26 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
[tool.poetry]
name = "hwi"
version = "2.0.1"
description = "A library for working with Dogecoin hardware wallets"
authors = ["Ross Nicoll <[email protected]>, Andrew Chow <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rnicoll/HWI"
homepage = "https://github.com/rnicoll/HWI"
exclude = ["docs/", "test/"]
include = ["hwilib/**/*.py", "udev/", "hwilib/py.typed"]
packages = [
{ include = "hwi.py" },
{ include = "hwi-qt.py" },
{ include = "hwilib" },
]
[tool.poetry.dependencies]
python = "^3.8.5,<3.10"
hidapi = "~0"
ecdsa = "~0"
pyaes = "^1.6"
mnemonic = "~0"
typing-extensions = "^3.7"
libusb1 = "^1.9.3"
pyside2 = { version = "^5.14.0", optional = true }
bitbox02 = ">=5.3.0,<6.0.0"
[tool.poetry.extras]
qt = ["pyside2"]
[tool.poetry.dev-dependencies]
pyinstaller = "^4.0"
pywin32-ctypes = {version = "^0.2.0",platform = "win32"}
pefile = {version = "^2019.4",platform = "win32"}
macholib = {version = "^1.11",platform = "darwin"}
autopep8 = "^1.4"
flake8 = "^3.7"
mypy = "^0.790"
sphinx = "^3.2.1"
sphinx-rtd-theme = "^0.5.1"
sphinxcontrib-autoprogram = "^0.1.6"
[tool.poetry.scripts]
hwi = 'hwilib._cli:main'
hwi-qt = 'hwilib._gui:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"