-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 913 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
[tool.poetry]
name = "htd-client"
version = "0.0.25"
description = "A client supporting Home Theater Direct's gateway device."
authors = [
"Adam Kirschner <accounts@adamskirschner.com>"
]
repository = "https://github.com/hikirsch/python-htd"
readme = "README.md"
license = "MIT"
packages = [{include = "htd_client"}]
[tool.poetry.urls]
"Issues" = "https://github.com/hikirsch/python-htd/issues"
[tool.poetry.dependencies]
python = "^3.13"
pyserial-asyncio = "^0.6"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
coverage = "^7.6"
pytest-cov = "^6.0"
Sphinx = "7.4.7"
sphinx-rtd-theme = "2.0.0"
sphinxcontrib-napoleon = "0.7"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
addopts = "--cov=htd_client --cov-report html --ignore=tests/realtest.py"