-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (65 loc) · 1.5 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
71
72
73
74
[tool.poetry]
name = "imubar"
version = "0.1.0"
description = "Bar with 6 IMU boards"
authors = ["Jaap Versteegh <[email protected]>"]
license = "GPL3"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
west = "^1.2.0"
gcovr = "^7.2"
clang-format = "^18.1.8"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
pytest = "^8.3.2"
invoke = "^2.2.0"
isort = "^5.13.2"
black = "^24.8.0"
ipython = "^8.26.0"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
flake8-isort = "^6.1.1"
flake8-junit-report = "^2.1.0"
pyelftools = "^0.31"
tomli = "^2.0.1"
gitpython = "^3.1.43"
mock = "^5.1.0"
cryptography = "^43.0.3"
intelhex = "^2.3.0"
cbor = "^1.0.0"
serial = "^0.0.97"
pyserial = "^3.5"
libusb = "1.0.27"
libusb-package = "1.0.26"
pyocd = "^0.36.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
extend_exclude = ''
[tool.isort]
profile = "black"
known_first_party = ["imubar"]
skip = ["__init__.py"]
extend_skip_glob = ["venv", ".venv", "__init__.py"]
[tool.pytest.ini_options]
mock_use_standalone_module = true
testpaths = ["tests/imubar"]
addopts = """\
--cov-report=term-missing:skip-covered \
--cov-report=html \
--cov-report=xml \
"""
filterwarnings = [
"ignore:The hookimpl CovPlugin:DeprecationWarning"
]
[tool.coverage.run]
source = ["imubar"]
branch = true
omit = []
[tool.coverage]
html = { directory = "build/reports/coverage-html"}
xml = { output = "build/reports/coverage.xml"}