Skip to content

Commit 66e5750

Browse files
authored
fix resources package_data (#139)
1 parent 9bc261f commit 66e5750

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

livekit-rtc/livekit/rtc/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.1.dev0"
1+
__version__ = "0.7.1.dev1"

livekit-rtc/setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def finalize_options(self):
5858
python_requires=">=3.9.0",
5959
install_requires=["protobuf>=4", "types-protobuf>=4"],
6060
package_data={
61-
"livekit.rtc": ["resources/*", "_proto/*.py", "py.typed", "*.pyi", "**/*.pyi"],
61+
"livekit.rtc": ["_proto/*.py", "py.typed", "*.pyi", "**/*.pyi"],
62+
"livekit.rtc.resources": ["*.so", "*.dylib", "*.dll", "LICENSE.md", "*.h"],
6263
},
6364
project_urls={
6465
"Documentation": "https://docs.livekit.io",

0 commit comments

Comments
 (0)