Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
snakers4
GitHub Repository: snakers4/silero-vad
Path: blob/master/pyproject.toml
1165 views
1
[build-system]
2
requires = ["hatchling"]
3
build-backend = "hatchling.build"
4
[project]
5
name = "silero-vad"
6
version = "6.0.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
"torch>=1.12.0",
32
"torchaudio>=0.12.0",
33
"onnxruntime>=1.16.1",
34
]
35
36
[project.urls]
37
Homepage = "https://github.com/snakers4/silero-vad"
38
Issues = "https://github.com/snakers4/silero-vad/issues"
39
40