This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
73 lines (66 loc) · 1.58 KB
/
setup.cfg
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
[metadata]
name = pytest-twister
version = attr: twister2.__version__
description = Plugin for pytest to run Zephyr tests
long_description = file: README.rst
url = https://github.com/zephyrproject-rtos/twister
python_requires = ~=3.8
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Embedded Systems
Topic :: Software Development :: Quality Assurance
Operating System :: Posix :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
package_dir =
=src
install_requires =
filelock
GitPython
marshmallow
ply
psutil
pytest>=7.0.0
pytest-subtests>=0.7.0
PyYAML>=5.1
pyserial
tabulate
[options.packages.find]
where = src
[options.entry_points]
pytest11 =
twister = twister2.plugin
console_scripts =
twister_tools = twister2.scripts.__main__:main
[flake8]
max-line-length = 120
ignore =
# line break before binary operator
W503,
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
per-file-ignores =
# imported but unused
__init__.py: F401
exclude =
parsetab.py
# TODO: remove after file is refactored
expr_parser.py
[isort]
profile = black
src_paths = src,tests
filter_files = True
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[mypy]
ignore_missing_imports = True
exclude = parsetab.py