-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 949 Bytes
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
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "tockloader"
authors = [{name = "Tock Project Developers", email = "devel@lists.tockos.org"}]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
dynamic = ["version", "description"]
requires-python = ">= 3.9"
dependencies = [
"argcomplete >= 1.8.2",
"colorama >= 0.3.7",
"crcmod >= 1.7",
"ecdsa >= 0.19.1",
"pycryptodome >= 3.15.0",
"pyserial >= 3.0.1",
"siphash >= 0.0.1",
"six >= 1.9.0",
"toml >= 0.10.2",
"tqdm >= 4.45.0 ",
"questionary >= 1.10.0",
]
[project.optional-dependencies]
nrfjprog = [
"pynrfjprog >= 10.19.0",
]
[project.urls]
Home = "https://github.com/tock/tockloader"
[project.scripts]
tockloader = "tockloader.main:main"
[tool.flit.sdist]
include = [".gitignore", "docs/"]
exclude = ["**/__pycache__", "docs/_build", "**/*.egg-info", "tests/packages/*/build"]