From de2891ccdfac47bde7eccc010f06cea3d68b8a2d Mon Sep 17 00:00:00 2001 From: Brendan Smithyman Date: Wed, 28 Oct 2015 10:05:58 -0400 Subject: [PATCH] Add Cython dependency --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 31c07dd5..71c52814 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,8 @@ setup( version = "0.1.3", packages = find_packages(), install_requires = ['numpy>=1.7', - 'scipy>=0.13' + 'scipy>=0.13', + 'Cython' ], author = "Rowan Cockett", author_email = "rowan@3ptscience.com",