Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
snakers4
GitHub Repository: snakers4/silero-vad
Path: blob/master/pyproject.toml
1908 views
1
[build-system]
2
requires = ["hatchling"]
3
build-backend = "hatchling.build"
4
[project]
5
name = "silero-vad"
6
version = "6.2.0"
7
authors = [
8
{name="Silero Team", email="[email protected]"},
9
]
10
description = "Voice Activity Detector (VAD) by Silero"
11
readme = "README.md"
12
requires-python = ">=3.8"
13
classifiers = [
14
"Development Status :: 5 - Production/Stable",
15
"License :: OSI Approved :: MIT License",
16
"Operating System :: OS Independent",
17
"Intended Audience :: Science/Research",
18
"Intended Audience :: Developers",
19
"Programming Language :: Python :: 3.8",
20
"Programming Language :: Python :: 3.9",
21
"Programming Language :: Python :: 3.10",
22
"Programming Language :: Python :: 3.11",
23
"Programming Language :: Python :: 3.12",
24
"Programming Language :: Python :: 3.13",
25
"Programming Language :: Python :: 3.14",
26
"Programming Language :: Python :: 3.15",
27
"Topic :: Scientific/Engineering :: Artificial Intelligence",
28
"Topic :: Scientific/Engineering",
29
]
30
dependencies = [
31
"packaging",
32
"torch>=1.12.0",
33
"torchaudio>=0.12.0",
34
"onnxruntime>=1.16.1",
35
]
36
37
[project.urls]
38
Homepage = "https://github.com/snakers4/silero-vad"
39
Issues = "https://github.com/snakers4/silero-vad/issues"
40
41
[project.optional-dependencies]
42
test = [
43
"pytest",
44
"soundfile",
45
"torch<2.9",
46
]
47
48