From ff2aa5fc4e6ae2df0884e4fc3dce157210a7a69f Mon Sep 17 00:00:00 2001 From: Florian Klien <klien@tugraz.at> Date: Wed, 25 Oct 2017 09:37:35 +0200 Subject: [PATCH] added Cython dependency --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 7678041..231b402 100644 --- a/setup.py +++ b/setup.py @@ -48,4 +48,6 @@ setup( py_modules = [ "DTLSSocket.DTLSSocket"], cmdclass = {"build_ext": prepare_tinydtls}, ext_modules = cy_build, + setup_requires = [ "Cython==0.27.2" ], + install_requires = [ "Cython==0.27.2" ], ) -- GitLab