Skip to content

Commit

Permalink
Make package zip safe
Browse files Browse the repository at this point in the history
We need be able to open validation files
  • Loading branch information
mociepka committed Dec 9, 2015
1 parent 89577cc commit 01b7ba5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -28,12 +28,13 @@ def run(self):
author_email='hello@mirumee.com',
description='Address validation helpers for Google\'s i18n address database', # noqa
license='BSD',
version='1.0.0',
version='1.0.1',
url='https://github.com/mirumee/google-i18n-address',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests>=2.7.0',
],
cmdclass={'update_validation_files': DownloadJSONFiles}
cmdclass={'update_validation_files': DownloadJSONFiles},
zip_safe=False
)

0 comments on commit 01b7ba5

Please sign in to comment.