forked from OHF-Voice/speech-to-phrase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.69 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
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[project]
name = "speech_to_phrase"
version = "1.2.0"
license = {text = "Apache-2.0"}
description = "Fast and personalized local speech-to-text"
readme = "README.md"
authors = [
{name = "The Home Assistant Authors", email = "[email protected]"}
]
keywords = ["home", "assistant", "speech", "recognition"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8.0"
dependencies = [
"hassil>=2.2.1,<3",
"PyYAML>=6,<7",
"unicode-rbnf>=2.2,<3",
"regex==2024.11.6",
"wyoming==1.5.4",
"aiohttp>=3,<4",
"pysilero-vad>=2,<3",
"pyring-buffer>=1,<2",
]
[project.optional-dependencies]
dev = [
"black==24.8.0",
"flake8==7.1.1",
"mypy==1.14.0",
"pylint==3.2.7",
"pytest==8.3.4",
"pytest-asyncio==0.25.2",
"tox==4.23.2",
"build==1.2.2",
"home-assistant-intents==2025.2.5",
]
[project.urls]
"Source Code" = "http://github.com/OHF-voice/speech-to-phrase"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["speech_to_phrase"]
exclude = ["tests"]
[tool.setuptools.package-data]
"speech_to_phrase" = ["sentences/*.yaml"]