diff -r 62e443d3c3d9 -r a801552ffad0 setup.py --- a/setup.py Mon Dec 07 12:00:41 2015 +0100 +++ b/setup.py Mon Jan 18 17:58:46 2016 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.2' +version = '0.1.3' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -50,7 +50,8 @@ package_dir={'': 'src'}, namespace_packages=[], include_package_data=True, - package_data={'': ['*.zcml', '*.txt', '*.pt', '*.pot', '*.po', '*.mo', '*.png', '*.gif', '*.jpeg', '*.jpg', '*.css', '*.js']}, + package_data={'': ['*.zcml', '*.txt', '*.pt', '*.pot', '*.po', '*.mo', + '*.png', '*.gif', '*.jpeg', '*.jpg', '*.css', '*.js']}, zip_safe=False, # uncomment this to be able to run tests with setup.py test_suite="pyams_i18n.tests.test_utilsdocs.test_suite",