forked from vrslev/jack_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 918 Bytes
/
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
[tool.poetry]
name = "jack-server"
version = "0"
description = "Control JACK server with Python"
authors = ["Lev Vereshchagin <[email protected]>"]
license = "MIT"
readme = "README.md"
include = ["src/jack_server/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "23.10.1"
pre-commit = "3.5.0"
pytest = "7.4.3"
pytest-cov = "4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "git-tag"
[tool.pyright]
ignore = [".venv"]
pythonVersion = "3.8"
typeCheckingMode = "strict"
reportUnnecessaryTypeIgnoreComment = "warning"
reportPrivateUsage = false
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-s"
[tool.coverage.report]
skip_covered = true
show_missing = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if TYPE_CHECKING:",
"if sys.platform",
]