2022-05-30 21:03:13 -04:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=42"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2022-10-29 14:44:05 -04:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2022-11-20 23:35:06 -05:00
|
|
|
addopts = "--cov=openwakeword --cov-report term-missing --flake8 --mypy --mypy-ignore-missing-imports"
|
2023-06-09 16:20:10 -04:00
|
|
|
flake8-max-line-length = "140"
|
2022-10-29 14:44:05 -04:00
|
|
|
testpaths = [
|
|
|
|
|
"tests",
|
|
|
|
|
"openwakeword"
|
2022-12-29 12:58:23 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "openwakeword"
|
2024-02-11 15:34:56 -05:00
|
|
|
version = "0.6.0"
|
2022-12-29 12:58:23 -05:00
|
|
|
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"
|
2025-10-17 22:00:16 -04:00
|
|
|
requires-python = ">=3.10"
|
2022-12-29 12:58:23 -05:00
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
2022-12-29 17:12:15 -05:00
|
|
|
"License :: OSI Approved :: Apache Software License",
|
2022-12-29 12:58:23 -05:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
]
|
2023-11-21 10:55:16 -05:00
|
|
|
dynamic = ["dependencies", "optional-dependencies"]
|
2022-12-29 12:58:23 -05:00
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
"Homepage" = "https://github.com/dscripka/openWakeWord"
|