mirror of
https://github.com/dscripka/openWakeWord.git
synced 2026-08-27 18:17:20 -04:00
30 lines
No EOL
874 B
TOML
30 lines
No EOL
874 B
TOML
[build-system]
|
|
requires = ["setuptools>=42"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--cov=openwakeword --cov-report term-missing --flake8 --mypy --mypy-ignore-missing-imports"
|
|
flake8-max-line-length = "140"
|
|
testpaths = [
|
|
"tests",
|
|
"openwakeword"
|
|
]
|
|
|
|
[project]
|
|
name = "openwakeword"
|
|
version = "0.6.0"
|
|
authors = [
|
|
{ name="David Scripka", email="david.scripka@gmail.com" },
|
|
]
|
|
description = "An open-source audio wake word (or phrase) detection framework with a focus on performance and simplicity"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dynamic = ["dependencies", "optional-dependencies"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/dscripka/openWakeWord" |