From bbd458985eaa5218cc1e6df31d4bfc0657cac54f Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Sun, 18 Aug 2013 00:25:51 -0700 Subject: [PATCH] Add setuptools to install_requires --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55700d3..b9243ea 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,9 @@ setup( version=VERSION, package_data={'capnp': ['*.pxd', '*.pyx', '*.h']}, ext_modules=cythonize('capnp/*.pyx', language="c++"), - install_requires=['cython > 0.19'], + install_requires=[ + 'cython > 0.19', + 'setuptools >= 0.8'], # PyPi info description='A cython wrapping of the C++ capnproto library', long_description=long_description,