-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
60 lines (53 loc) · 1.32 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
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ledgerwallet"
authors = [
{name = "Ledger", email = "[email protected]" }
]
description = "Library to communicate with Ledger Nano S/X and Speculos"
readme = {file = "README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"click >=8.0",
"construct >=2.10",
"cryptography >=2.5",
"ecdsa",
"hidapi",
"intelhex",
"Pillow",
"protobuf >=3.20,<4",
"requests",
"tabulate",
"toml",
]
[project.urls]
Home = "https://github.com/LedgerHQ/ledgerctl"
[project.scripts]
ledgerctl = "ledgerwallet.ledgerctl:cli"
[tool.setuptools_scm]
write_to = "ledgerwallet/__version__.py"
local_scheme = "no-local-version"
[tool.isort]
profile = "black"
[tool.black]
preview = true
[tool.bandit]
skips = ["B101"]