From 3bc4f31eaac16dfdc5539210517c32301f450c17 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 15 Oct 2009 08:11:39 +0200 Subject: [PATCH] setup: Remove dependencies -- easy_install doesn't always know when numpy is installed. Also mark package as non-zip-safe. --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 86f752a5..d38dba90 100644 --- a/setup.py +++ b/setup.py @@ -45,12 +45,11 @@ def configuration(parent_package='', top_path=None, package_name=DISTNAME): if __name__ == "__main__": setup(configuration = configuration, - install_requires = 'numpy', + install_requires = [], namespace_packages = ['scikits'], packages = setuptools.find_packages(), include_package_data = True, - #test_suite="tester", # for python setup.py test - zip_safe = True, # the package can run out of an .egg file + zip_safe = False, # the package can run out of an .egg file classifiers = [ 'Development Status :: 1 - Planning', 'Environment :: Console',