From 266647d42f65707f49cc159af2fac49baf9f66bc Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Thu, 10 Mar 2016 14:13:17 -0500 Subject: [PATCH] zip_safe=False --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2b4067a..2cebfae 100644 --- a/setup.py +++ b/setup.py @@ -34,10 +34,11 @@ setup( version='0.0.1', author='Sylvain Corlay', author_email='sylvain.corlay@gmail.com', - url='https://github.com/SylvainCorlay/pbtest', + url='https://github.com/pybind/pbtest', description='A test project using pybind11', long_description='', ext_modules=ext_modules, install_requires=['pybind11'], cmdclass={'build_ext': BuildExt}, + zip_safe=False, )