-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.54 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
[build-system]
requires = [
"setuptools>=65",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ledgered"
authors = [
{ name = "Ledger", email = "[email protected]" }
]
description = "Python tools, utils, libraries, to be used with Ledger cryptodevices"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Typing :: Typed",
]
dynamic = [ "version" ]
requires-python = ">=3.9"
dependencies = [
"toml",
"pyelftools",
"pygithub",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov"
]
[project.urls]
Home = "https://github.com/LedgerHQ/ledgered"
[project.scripts]
ledger-manifest = "ledgered.manifest.cli:main"
ledger-binary = "ledgered.binary:main"
[tool.setuptools_scm]
write_to = "src/ledgered/__version__.py"
local_scheme = "no-local-version"
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.report]
show_missing = true
exclude_lines = [
"@abstractmethod",
"pragma: no cover"
]
[tool.ruff]
line-length = 100
[tool.bandit]
skips = ["B101"]