From d77c37ff1460b99077cb86f230c27e3222d695c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 17 Apr 2025 17:29:04 -0700 Subject: [PATCH] pyproject: add py.typed (PEP 561) --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 01213b5c1..e57a2c5e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,9 +92,11 @@ websocket = [ "websockets~=13.1", "fastapi~=0.115.6" ] whisper = [ "faster-whisper~=1.1.1" ] [tool.setuptools.packages.find] -# All the following settings are optional: where = ["src"] +[tool.setuptools.package-data] +"pipecat" = ["py.typed"] + [tool.pytest.ini_options] addopts = "--verbose" testpaths = ["tests"]