From 2528b0e0bd6cf857965237cc787e79b0c901ca6e Mon Sep 17 00:00:00 2001 From: Radoslaw Olko Date: Sat, 5 Apr 2025 13:48:17 +0200 Subject: [PATCH] fix setup install package as machine, not source.machine --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 23dd359..60545da 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,8 @@ author='execuc', author_email='', license='MIT', - packages=['source/machine'], + packages=['machine'], + package_dir={'': 'source'}, zip_safe=False, install_requires=["pyserial>=3.5", "hid>=1.0.4", "micropython-cpython-ustruct==0.0", "micropython-cpython-micropython==0.1.1"])