-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (33 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
43 lines (33 loc) · 873 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
41
42
43
[tool.poetry]
name = "sensirion-uart-scc1"
version = "1.1.1"
description = "Driver for Sensirion SCC1 USB cable"
authors = ["Pascal Sachs"]
license = "BSD-3-Clause"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
packaging = "^23-2"
sensirion-shdlc-driver = "^0.1.5"
sensirion-i2c-driver="^1.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4"
flake8 = "^7.0.0"
pytest-cov = "^4.1"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov=sensirion_uart_scc1 --cov-report term --cov-report lcov --junitxml=test-report.xml"
markers = "needs_hardware"
testpaths = [
"tests"
]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"