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
This commit is contained in:
Samuel Dion-Girardeau 2016-07-16 06:49:30 -07:00
parent 64755bae8a
commit 6c3f8f6884

View file

@ -32,5 +32,6 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
zip_safe=False,
) )