Add setuptools to install_requires

This commit is contained in:
Jason Paryani
2013-08-18 00:25:51 -07:00
parent b4c6ec9fe6
commit bbd458985e

View File

@@ -46,7 +46,9 @@ setup(
version=VERSION, version=VERSION,
package_data={'capnp': ['*.pxd', '*.pyx', '*.h']}, package_data={'capnp': ['*.pxd', '*.pyx', '*.h']},
ext_modules=cythonize('capnp/*.pyx', language="c++"), ext_modules=cythonize('capnp/*.pyx', language="c++"),
install_requires=['cython > 0.19'], install_requires=[
'cython > 0.19',
'setuptools >= 0.8'],
# PyPi info # PyPi info
description='A cython wrapping of the C++ capnproto library', description='A cython wrapping of the C++ capnproto library',
long_description=long_description, long_description=long_description,