Add setuptools to install_requires
This commit is contained in:
4
setup.py
4
setup.py
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user