From: Jean-François Nguyen Date: Tue, 1 Jun 2021 19:07:53 +0000 (+0200) Subject: setup.py: do not install package as a zip file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71a0dd16232e5801031a99003273dca9d44e9287;p=lambdasoc.git setup.py: do not install package as a zip file. --- diff --git a/setup.py b/setup.py index e808f63..d546f65 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ setup( "SFL": ["asyncserial"] }, packages=find_packages(), + zip_safe=False, # install package as a directory. needed to build the SoC firmware. include_package_data=True, project_urls={ "Source Code": "https://github.com/lambdaconcept/lambdasoc",