openwakeword/pyproject.toml

29 lines
821 B
TOML
Raw Normal View History

[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"
2023-06-09 16:20:10 -04:00
flake8-max-line-length = "140"
testpaths = [
"tests",
"openwakeword"
]
[project]
name = "openwakeword"
2023-09-02 11:37:00 -04:00
version = "0.5.1"
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.7"
classifiers = [
"Programming Language :: Python :: 3",
2022-12-29 17:12:15 -05:00
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/dscripka/openWakeWord"