from setuptools import find_packages, setup from Cython.Build import cythonize setup( name='robots', packages=find_packages(), ext_modules=cythonize('robots/*.pyx'), install_requires=[ 'flask', 'blessings', 'cython', ], )