From e5a2915c0efc3b545b643f52aad1735c4db0ac40 Mon Sep 17 00:00:00 2001 From: Luc Giffon <luc.giffon@lif.univ-mrs.fr> Date: Mon, 15 Jan 2018 16:09:50 +0100 Subject: [PATCH] modification in the management of version number in __init__.py --- README.rst | 16 +++++++++++++++- setup.py | 2 +- skluc/__init__.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 10f1f65..206bb05 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,16 @@ Scikit-Luc ========== -This is a python package containing the usefull script developed or found by Luc Giffon during his PhD thesis. +This is a python package containing the usefull script developed or found by Luc Giffon during his PhD thesis. Those +scripts are mainly related to the machine learning and data processing field. +Installation from Pypi repository +================================= + +Anywhere in your working virtualenv first install tensorflow using the documentation: https://www.tensorflow.org/install/ +Then just do: + + pip install scikit-luc Installation from sources ========================= @@ -14,3 +22,9 @@ In the root directory of the package, just do: or pip install -e . + +Convention +========== + +When some data is supposedly structured (e.g. images should be 2D array), the output of mldataset shouldn't take that +into account by default. \ No newline at end of file diff --git a/setup.py b/setup.py index 7232414..5ef0c91 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( # function packages=find_packages(exclude=['doc', 'examples']), # See PEP440 for defining a proper version number - version='1.6', + version=str(skluc.__version__), # Small description of the package description='Science-Kit developed by Luc Giffon for Luc Giffon during his PhD thesis.', # Long description diff --git a/skluc/__init__.py b/skluc/__init__.py index 5f5ad9b..6518719 100644 --- a/skluc/__init__.py +++ b/skluc/__init__.py @@ -2,4 +2,4 @@ This package contains some usefull functions for the PhD of Luc Giffon. """ -__version__ = "1.6" \ No newline at end of file +__version__ = "1.9" \ No newline at end of file -- GitLab