From 1f86cd62946d916855ab21a2c97af361189ca411 Mon Sep 17 00:00:00 2001 From: Checker8763 <39644556+Checker8763@users.noreply.github.com> Date: Sat, 17 May 2025 19:35:43 +0200 Subject: [PATCH] Update setup.py Added packages=find_packages() instead of hardcoding the packages --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5f8118f..00b5295 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup(name=name, author="Joel Martin", author_email="github@martintribe.org", - packages=['websockify'], + packages=find_packages(), include_package_data=True, install_requires=[ 'numpy', 'requests',