From 6c3f8f688491fcaf21fd490362c024440a1dcc58 Mon Sep 17 00:00:00 2001 From: Samuel Dion-Girardeau Date: Sat, 16 Jul 2016 06:49:30 -0700 Subject: [PATCH] Ensure the egg is a directory, not a zip Prevents NotADirectoryError's in flask templates Ref.: https://github.com/pallets/flask/issues/1562 https://github.com/pallets/flask/issues/1645 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index edce534..f6c0408 100644 --- a/setup.py +++ b/setup.py @@ -32,5 +32,6 @@ setup( 'Programming Language :: Python :: 3.3', 'Topic :: Software Development :: Libraries :: Python Modules', ], + zip_safe=False, )