pysilero-vad 2.1.0__tar.gz → 2.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/PKG-INFO +9 -1
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pyproject.toml +13 -2
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad.egg-info/PKG-INFO +9 -1
- pysilero_vad-2.1.1/pysilero_vad.egg-info/requires.txt +11 -0
- pysilero_vad-2.1.0/pysilero_vad.egg-info/requires.txt +0 -2
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/LICENSE.md +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/README.md +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad/__init__.py +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad/models/silero_vad.onnx +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad/py.typed +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad.egg-info/SOURCES.txt +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad.egg-info/dependency_links.txt +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad.egg-info/top_level.txt +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/pysilero_vad.egg-info/zip-safe +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/setup.cfg +0 -0
- {pysilero_vad-2.1.0 → pysilero_vad-2.1.1}/tests/test_vad.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pysilero_vad
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.1
|
4
4
|
Summary: Pre-packaged voice activity detector using silero-vad
|
5
5
|
Author-email: Michael Hansen <mike@rhasspy.org>
|
6
6
|
License: MIT
|
@@ -22,6 +22,14 @@ Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE.md
|
23
23
|
Requires-Dist: onnxruntime<2,>=1.18.0
|
24
24
|
Requires-Dist: numpy
|
25
|
+
Provides-Extra: dev
|
26
|
+
Requires-Dist: black==25.1.0; extra == "dev"
|
27
|
+
Requires-Dist: flake8==7.3.0; extra == "dev"
|
28
|
+
Requires-Dist: isort==6.0.1; extra == "dev"
|
29
|
+
Requires-Dist: mypy==1.17.0; extra == "dev"
|
30
|
+
Requires-Dist: pylint==3.3.7; extra == "dev"
|
31
|
+
Requires-Dist: pytest==8.4.1; extra == "dev"
|
32
|
+
Requires-Dist: build==1.2.2; extra == "dev"
|
25
33
|
Dynamic: license-file
|
26
34
|
|
27
35
|
# pySilero VAD
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pysilero_vad"
|
7
|
-
version = "2.1.
|
7
|
+
version = "2.1.1"
|
8
8
|
license = {text = "MIT"}
|
9
9
|
description = "Pre-packaged voice activity detector using silero-vad"
|
10
10
|
readme = "README.md"
|
@@ -39,8 +39,19 @@ zip-safe = true
|
|
39
39
|
include-package-data = true
|
40
40
|
|
41
41
|
[tool.setuptools.packages.find]
|
42
|
-
include = ["pysilero_vad"]
|
42
|
+
include = ["pysilero_vad", "pysilero_vad.*"]
|
43
43
|
exclude = ["tests", "tests.*"]
|
44
44
|
|
45
45
|
[tool.setuptools.package-data]
|
46
46
|
pysilero_vad = ["models/silero_vad.onnx"]
|
47
|
+
|
48
|
+
[project.optional-dependencies]
|
49
|
+
dev = [
|
50
|
+
"black==25.1.0",
|
51
|
+
"flake8==7.3.0",
|
52
|
+
"isort==6.0.1",
|
53
|
+
"mypy==1.17.0",
|
54
|
+
"pylint==3.3.7",
|
55
|
+
"pytest==8.4.1",
|
56
|
+
"build==1.2.2",
|
57
|
+
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pysilero_vad
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.1
|
4
4
|
Summary: Pre-packaged voice activity detector using silero-vad
|
5
5
|
Author-email: Michael Hansen <mike@rhasspy.org>
|
6
6
|
License: MIT
|
@@ -22,6 +22,14 @@ Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE.md
|
23
23
|
Requires-Dist: onnxruntime<2,>=1.18.0
|
24
24
|
Requires-Dist: numpy
|
25
|
+
Provides-Extra: dev
|
26
|
+
Requires-Dist: black==25.1.0; extra == "dev"
|
27
|
+
Requires-Dist: flake8==7.3.0; extra == "dev"
|
28
|
+
Requires-Dist: isort==6.0.1; extra == "dev"
|
29
|
+
Requires-Dist: mypy==1.17.0; extra == "dev"
|
30
|
+
Requires-Dist: pylint==3.3.7; extra == "dev"
|
31
|
+
Requires-Dist: pytest==8.4.1; extra == "dev"
|
32
|
+
Requires-Dist: build==1.2.2; extra == "dev"
|
25
33
|
Dynamic: license-file
|
26
34
|
|
27
35
|
# pySilero VAD
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|