-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.14 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
[tool.poetry]
name = "recs"
version = "0.3.1"
description = "🎙 recs: the Universal Recorder 🎙"
authors = ["Tom Ritchford <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10"
dtyper = "*"
numpy = "*"
pyaudio = "*"
rich = "*"
sounddevice = "*"
soundfile = "*"
threa = ">=1.9.0"
typer = "*"
impall = "*"
overrides = "*"
coverage = "*"
strenum = "*"
humanfriendly = "*"
tomli = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
ruff = "*"
tdir = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["recs"]
omit = [
"recs/__main__.py",
"recs/cfg/cli.py",
"recs/cfg/app.py",
]
[tool.coverage.report]
fail_under = 91
skip_covered = true
exclude_lines = [
"pragma: no cover",
"if False:",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"if t.TYPE_CHECKING:",
]
[tool.poetry.scripts]
recs = 'recs.base.cli:run'
[tool.mypy]
ignore_missing_imports = true
strict = true
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"