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
|
[project]
name = "wyoming"
version = "1.8.0"
description = "Peer-to-peer protocol for voice assistants"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Michael Hansen", email = "mike@rhasspy.org"}
]
keywords = ["voice", "assistant", "protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3.8",
"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",
]
[project.urls]
Homepage = "http://github.com/OHF-voice/wyoming"
[tool.setuptools.packages.find]
include = ["wyoming", "wyoming.*"]
exclude = ["tests", "tests.*"]
[tool.setuptools.package-data]
wyoming = ["py.typed"]
"wyoming.http" = ["conf/*.yaml"]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
[project.optional-dependencies]
dev = [
"black==22.12.0",
"flake8==7.0.0",
"isort==5.11.3",
"mypy==0.991",
"pylint==2.15.9",
"pytest==7.4.4",
"pytest-asyncio==0.23.3",
"build==1.2.2.post1",
]
zeroconf = [
"zeroconf==0.88.0"
]
http = [
"Flask[async]==3.0.2",
"swagger-ui-py==23.9.23",
]
|