-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.cfg
More file actions
78 lines (71 loc) · 1.6 KB
/
setup.cfg
File metadata and controls
78 lines (71 loc) · 1.6 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
[metadata]
name = pysilero-vad
author = Michael Hansen
author_email = mike@rhasspy.org
url = http://github.com/rhasspy/pysilero-vad
description = Pre-packaged voice activity detector using silero-vad
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
keywords =
voice
activity
silero
vad
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Text Processing :: Linguistic
License :: OSI Approved :: MIT License
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
[options]
packages = find:
python_requires = >=3.9
include_package_data = true
[options.packages.find]
include =
pysilero_vad
pysilero_vad.*
exclude =
tests
tests.*
[options.package_data]
pysilero_vad =
ggml-silero-v6.2.0.bin
[options.extras_require]
dev =
black
flake8
isort
mypy
pylint
pytest
build
[bdist_wheel]
# This makes the wheel tag abi3 (single wheel per platform for all 3.9+)
py_limited_api = cp39
[flake8]
# To work with Black
max-line-length = 88
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# W504 line break after binary operator
ignore =
E501,
W503,
E203,
D202,
W504
[isort]
multi_line_output = 3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
indent = " "