-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
68 lines (63 loc) · 1.69 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
61
62
63
64
65
66
67
68
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ledgerblue"
authors = [
{ name = "Ledger", email = "[email protected]" }
]
description = "Python library to communicate with Ledger devices"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = [ "version" ]
requires-python = ">=3"
dependencies = [
"pyelftools>=0.29,<1.0",
"hidapi>=0.7.99",
"protobuf >=3.20,<4",
"pycryptodomex>=3.6.1",
"future",
"ecpy>=0.9.0",
"pillow>=3.4.0",
"python-u2flib-host>=3.0.2",
"websocket_client>=0.56.0",
"nfcpy>=1.0.4",
"bleak>=0.20.1",
"pycryptodome>=3.18.0",
"python-gnupg>=0.5.0"
]
[tool.setuptools]
packages = ["ledgerblue"]
include-package-data = false
[project.urls]
Home = "https://github.com/LedgerHQ/blue-loader-python"
[project.optional-dependencies]
smartcard = [
"python-pyscard>=1.6.12"
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinx_argparse"
]
[tool.setuptools_scm]
write_to = "ledgerblue/__version__.py"
local_scheme = "no-local-version"
fallback_version = "0.0.0"