Skip to content
Snippets Groups Projects
Commit e5a2915c authored by Luc Giffon's avatar Luc Giffon
Browse files

modification in the management of version number in __init__.py

parent a0194a92
No related branches found
No related tags found
No related merge requests found
Scikit-Luc 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 Installation from sources
========================= =========================
...@@ -14,3 +22,9 @@ In the root directory of the package, just do: ...@@ -14,3 +22,9 @@ In the root directory of the package, just do:
or or
pip install -e . 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
...@@ -18,7 +18,7 @@ setup( ...@@ -18,7 +18,7 @@ setup(
# function # function
packages=find_packages(exclude=['doc', 'examples']), packages=find_packages(exclude=['doc', 'examples']),
# See PEP440 for defining a proper version number # See PEP440 for defining a proper version number
version='1.6', version=str(skluc.__version__),
# Small description of the package # Small description of the package
description='Science-Kit developed by Luc Giffon for Luc Giffon during his PhD thesis.', description='Science-Kit developed by Luc Giffon for Luc Giffon during his PhD thesis.',
# Long description # Long description
......
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
This package contains some usefull functions for the PhD of Luc Giffon. This package contains some usefull functions for the PhD of Luc Giffon.
""" """
__version__ = "1.6" __version__ = "1.9"
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment