-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.35 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
[tool.poetry]
name = "sonounolib"
version = "0.5.3"
description = "Library of generic sonification components."
authors = ["Pierre Chanial <[email protected]>", "Johanna Casado <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22.3"
sounddevice = "^0.4.4"
streamunolib = "^0.4.3"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
mkdocs = "^1.2.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
ipython = "^8.3.0"
mkapi = "^1.0.14"
mkdocs-material = "^8.2.16"
markdown-include = "^0.6.0"
mkdocs-exclude = "^1.0.2"
responses = "^0.21.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"except ImportError:",
"if typing.TYPE_CHECKING:",
]
omit = [
"sonounolib/extern/*"
]
show_missing = true
skip_covered = true
[tool.isort]
known_first_party = ["streamunolib"]
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
[[tool.mypy.overrides]]
module = [
"IPython",
"IPython.display",
"js",
"pyodide",
"responses",
"sounddevice",
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"sonounolib.extern.*",
]
ignore_errors = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=sonounolib"
testpaths = [
"tests",
]