From 7f476142f51e8e997bc9d3e1c20bc0bad6586dd7 Mon Sep 17 00:00:00 2001 From: Calvin Date: Mon, 1 Apr 2013 14:57:01 -0400 Subject: move the meta information out of the docstring --- feast.py | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/feast.py b/feast.py index afe87aa..8fb5ce8 100644 --- a/feast.py +++ b/feast.py @@ -8,16 +8,16 @@ theoretic feature selection," Journal of Machine Learning Research, vol. 13, pp. 27-66, 2012. - - __author__ = "Calvin Morrison" - __copyright__ = "Copyright 2013, EESI Laboratory" - __credits__ = ["Calvin Morrison", "Gregory Ditzler"] - __license__ = "GPL" - __version__ = "0.1.0" - __maintainer__ = "Calvin Morrison" - __email__ = "mutantturkey@gmail.com" - __status__ = "Release" ''' +__author__ = "Calvin Morrison" +__copyright__ = "Copyright 2013, EESI Laboratory" +__credits__ = ["Calvin Morrison", "Gregory Ditzler"] +__license__ = "GPL" +__version__ = "0.2.0" +__maintainer__ = "Calvin Morrison" +__email__ = "mutantturkey@gmail.com" +__status__ = "Release" + import numpy as np from ctypes import * @@ -538,6 +538,3 @@ def check_data(data, labels): raise Exception("data and labels must be the same length") return 1.0*data, 1.0*labels - - - -- cgit v1.2.3