-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·84 lines (73 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·84 lines (73 loc) · 1.54 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "easy-audio-interfaces"
version = "0.8.0"
description = "Easy Audio Interfaces is a Python library that provides a simple and flexible way to work with audio streams, including recording, playback, network transfer, and processing."
readme = "README.md"
requires-python = ">=3.9,<3.13"
authors = [
{ name = "Ankush Malaker", email = "43288948+AnkushMalaker@users.noreply.github.com" },
]
dependencies = [
"fire>=0.5.0,<0.6.0",
"rich>=13.5.3,<14.0.0",
"opuslib>=3.0.1,<4.0.0",
"websockets>=14.0",
"scipy>=1.13.1",
"wyoming>=1.6.1",
"soxr>=0.5.0.post1",
]
optional-dependencies = { stt = [
"faster-whisper",
], silero-vad = [
"torch",
"torchaudio",
], bluetooth = [
"bleak",
], local-audio = [
"pyaudio",
], test = [
"pytest",
"pytest-asyncio",
"hypothesis>=6.135.12",
] }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["easy_audio_interfaces*"]
exclude = ["easy_audio_interfaces/tests"]
[tool.isort]
profile = "black"
[tool.black]
exclude = '''
(
.venv
| .git
| multirun
)
'''
line-length = 100
target-version = ["py39", "py310"]
[tool.mypy]
files = ["easy_audio_interfaces"]
[[tool.mypy.overrides]]
module = [
"onnxruntime.*",
"samplerate.*",
"fire.*",
"scipy.*",
"torchaudio.*",
"opuslib.*",
"soxr.*",
]
ignore_missing_imports = true
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"pre-commit>=4.2.0",
]