set the zip_safe flag to False (#32194)

The references to __file__ within code base make the zip_safe
method of installing not possible.
This commit is contained in:
Alan Rominger 2017-10-27 12:47:45 -04:00 committed by ansibot
parent e010fcf7e1
commit ef42eaeaa1

View file

@ -220,5 +220,7 @@ setup(
'bin/ansible-vault',
],
data_files=[],
extras_require=extra_requirements
extras_require=extra_requirements,
# Installing as zip files would break due to references to __file__
zip_safe=False
)