forked from LedgerHQ/speculos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (60 loc) · 1.62 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
69
70
[build-system]
requires = [
"setuptools>=61.2",
"wheel",
"setuptools_scm",
"cmake"
]
build-backend = "setuptools.build_meta"
[project]
name = "speculos"
authors = [{name = "Ledger", email = "[email protected]"}]
description = "Ledger Blue, Stax, Flex and Nano S/S+/X application emulator"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
requires-python = ">=3.8"
dependencies = [
"construct>=2.10.56,<3.0.0",
"flask>=2.0.0,<3.0.0",
"flask-restful>=0.3.9,<1.0",
"jsonschema>=3.2.0,<4.18.0",
"mnemonic>=0.19,<1.0",
"pillow>=8.0.0,<11.0.0",
"pyelftools>=0.27,<1.0",
"pyqt5>=5.15.2,<6.0.0",
"requests>=2.25.1,<3.0.0",
"ledgered>=0.6.2",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/LedgerHQ/speculos"
"Bug Tracker" = "https://github.com/LedgerHQ/speculos/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov"
]
[project.scripts]
speculos = "speculos.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
write_to = "speculos/__version__.py"
local_scheme = "no-local-version"
[tool.mypy]
ignore_missing_imports = true
[tool.flake8]
max-line-length = 120