caioariede / django-input-mask

A collection of widgets for displaying masks to input elements using JavaScript.
MIT License
52 stars 21 forks source link

zip_safe=False to force not create zip Archive #7

Closed luzfcb closed 9 years ago

luzfcb commented 9 years ago

The zip_safe flag can be used to force or prevent zip Archive creation (.egg). In general you probably don’t want your packages to be installed as zip files because some tools do not support them and they make debugging a lot harder.

luzfcb commented 9 years ago

@caioariede in Django 1.9, .egg is deprecated https://github.com/django/django/commit/1fed8dd715cc734f51c162d4362d34d357925bc4

caioariede commented 9 years ago

Thanks @luzfcb