From 8ff9fc895bd6032636e3716f02773fdcd9cdd3d3 Mon Sep 17 00:00:00 2001 From: Fabian Pedregosa <fabian.pedregosa@inria.fr> Date: Mon, 1 Feb 2010 11:38:15 +0000 Subject: [PATCH] 0.1 Release From: Fabian Pedregosa <fabian.pedregosa@inria.fr> git-svn-id: https://scikit-learn.svn.sourceforge.net/svnroot/scikit-learn/trunk@396 22fbfee3-77ab-4535-9bad-27d1bd3bc7d8 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1a2027c93f..e482e5a0c1 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ MAINTAINER_EMAIL = 'fabian.pedregosa@inria.fr' URL = 'http://scikit-learn.sourceforge.net' LICENSE = 'new BSD' DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/' -VERSION = '0.1-beta' +VERSION = '0.1' import setuptools # we are using a setuptools namespace from numpy.distutils.core import setup @@ -47,7 +47,8 @@ if __name__ == "__main__": name = DISTNAME, install_requires=[ 'numpy >= 1.1', - 'scipy >= 0.7'], + 'scipy >= 0.7', + 'scikits.optimization'], maintainer = MAINTAINER, include_package_data = True, maintainer_email = MAINTAINER_EMAIL, -- GitLab