-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (65 loc) · 1.46 KB
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
71
72
73
[project]
name = "zview"
version = "0.13.1"
authors = [{ name = "Paulo Santos", email = "pauloxrms@gmail.com" }]
description = "ZView, a Zephyr RTOS runtime visualizer"
dependencies = [
"PyYAML>=6.0.3",
"pyelftools>=0.32",
"pyocd>=0.38.0",
"pylink-square>=1.7.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Embedded Systems",
]
readme = "README_pip.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = [
"Zephyr",
"RTOS",
"Zephyr RTOS",
"threads",
"stacks",
"heaps",
"analyser",
"ZView",
"tooling",
"module",
]
[project.urls]
Homepage = "https://github.com/wkhadgar/zview"
Issues = "https://github.com/wkhadgar/zview/issues"
[project.scripts]
zview = "zview_cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["zview_cli"]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"SIM", # flake8-simplify
"UP", # pyupgrade
"W", # pycodestyle warnings
]
ignore = [
"SIM108", # Allow if-else blocks instead of forcing ternary operator
"E402", # Allow module-level import outside top of file
]
[tool.ruff.format]
quote-style = "preserve"
line-ending = "lf"