-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.59 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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "yova"
version = "0.1.0"
description = "YOVA - Your Own Voice Assistant"
authors = ["Krzysztof Jamroz"]
readme = "README.md"
packages = [{include = "yova_core"}, {include = "yova_broker"}]
[tool.poetry.dependencies]
python = "^3.8"
websockets = "^12.0"
openai = "^1.0.0"
httpx = "^0.28.0"
pyaudio = "^0.2.14"
sounddevice = "^0.4.6"
numpy = "^1.24.0"
python-dotenv = "^1.0.0"
soundfile = "^0.13.1"
pydub = "^0.25.1"
simpleaudio = "^1.0.4"
supervisor = "^4.2.5"
pyzmq = "^25.1.0"
urwid = "^2.4.0"
torch = "^2.0.0"
torchaudio = "^2.0.0"
speechbrain = "^0.5.14"
librosa = "^0.10.0"
scipy = "^1.10.0"
webrtcvad = "^2.0.10"
jiwer = "^4.0.0"
tiktoken = "^0.5.0"
jsonschema = "^4.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.21.0"
[tool.poetry.group.rpi]
optional = true
[tool.poetry.group.rpi.dependencies]
spidev = "*"
rpi-lgpio = "*"
[tool.poetry.scripts]
yova = "yova_core.main:run"
yova-broker = "yova_broker.main:run"
yova-api-openai = "yova_api_openai.main:run"
yova-api-n8n = "yova_api_n8n.main:run"
yova-client-dev-tools = "yova_client_dev_tools.main:run"
yova-client-respeaker-hat = "yova_client_respeaker_hat.main:run"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
filterwarnings = [
"ignore::DeprecationWarning:pydub.*",
"ignore::DeprecationWarning:audioop.*",
"ignore::DeprecationWarning",
"ignore:.*audioop.*:DeprecationWarning"
]