diff -r ceca681f8c3a -r 21b836971c56 setup.py --- a/setup.py Thu Oct 08 11:38:12 2015 +0200 +++ b/setup.py Thu Oct 08 11:39:17 2015 +0200 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.0' +version = '0.1.1' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -47,7 +47,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_workflow.tests.test_utilsdocs.test_suite",