forked from syscoin/HWI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 960 Bytes
/
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
[tool.poetry]
name = "hwi"
version = "1.0.2"
description = "A library for working with Syscoin hardware wallets"
authors = ["Andrew Chow <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/syscoin/HWI"
homepage = "https://github.com/syscoin/HWI"
exclude = ["docs/", "test/"]
include = ["hwilib/**/*.py", "udev/"]
packages = [
{ include = "hwi.py" },
{ include = "hwilib" },
]
[tool.poetry.dependencies]
python = "^3.6"
hidapi = "^0.7.99"
ecdsa = "^0.13.0"
pyaes = "^1.6"
mnemonic = "^0.18.0"
typing-extensions = "^3.7"
libusb1 = "^1.7"
[tool.poetry.dev-dependencies]
pyinstaller = "^3.4"
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"
[tool.poetry.scripts]
hwi = 'hwilib.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"