-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.75 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
[project]
name = "wyoming-faster-whisper"
version = "3.1.1"
description = "Wyoming Server for Faster Whisper"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Michael Hansen", email = "mike@rhasspy.org"}
]
keywords = ["rhasspy", "wyoming", "whisper", "stt"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"License :: OSI Approved :: MIT 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",
]
dependencies = [
"wyoming>=1.8,<2",
"faster-whisper>=1.2.1,<2",
]
[project.urls]
Homepage = "http://github.com/rhasspy/wyoming-faster-whisper"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["wyoming_faster_whisper"]
exclude = ["tests"]
[project.scripts]
wyoming-faster-whisper = "wyoming_faster_whisper.__main__:run"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
[project.optional-dependencies]
dev = [
"black",
"flake8",
"isort",
"mypy",
"pylint",
"pytest",
"pytest-asyncio",
]
transformers = [
"transformers[torch]==4.52.4",
]
sherpa = [
"sherpa-onnx>=1.12.19,<2",
]
onnx_asr = [
"onnx-asr[cpu,hub]==0.7.0",
]
zeroconf = [
"wyoming[zeroconf]",
]