From 87ea160a2360aac41a48f1218554a163cff25171 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Thu, 27 Dec 2012 10:31:08 -0500 Subject: [PATCH] Correction to setup.py - use install_requires to inform pip of dependencies. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5b608eda..8833b1d8 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ It is intended for use in mathematics / scientific / engineering applications. D "Topic :: Scientific/Engineering :: Visualization", "Topic :: Software Development :: User Interfaces", ], - requires = [ + install_requires = [ 'numpy', 'scipy', ],