From 160f6be7ca1d516b675cf40e9f65aca83f022d33 Mon Sep 17 00:00:00 2001 From: = Date: Sun, 30 Aug 2020 23:51:29 +0200 Subject: [PATCH] updated readme. --- README.rst | 8 +++++++- igel/__init__.py | 2 +- setup.py | 8 ++++---- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index a6de466..5aa1a9d 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ A machine learning tool that allows to train/fit, test and use models without wr .. note:: - The project is under heavy development. Feel free to open an issue if you encountered any + The project is still under heavy development. Feel free to open an issue if you encountered any Intro -------- @@ -91,3 +91,9 @@ TODO ----- - add option as arguments to the models - add multiple file support + +Contributors +------------ + +None yet. Why not be the first? +Contributions are always welcome. Please check the contribution guidelines first. diff --git a/igel/__init__.py b/igel/__init__.py index 992783f..922559c 100644 --- a/igel/__init__.py +++ b/igel/__init__.py @@ -4,4 +4,4 @@ __author__ = "Nidhal Baccouri" __email__ = 'nidhalbacc@gmail.com' -__version__ = '0.0.3' +__version__ = '0.0.4' diff --git a/setup.py b/setup.py index c5638ee..036c94b 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ """The setup script.""" from setuptools import setup, find_packages - +from igel import __version__, __email__, __author__ with open('README.rst') as readme_file: readme = readme_file.read() @@ -23,8 +23,8 @@ print("requirements: ", requirements) setup( - author="Nidhal Baccouri", - author_email="nidhalbacc@gmail.com", + author=__author__, + author_email=__email__, python_requires='>=3.6', classifiers=[ # 'Development Status :: 2 - Pre-Alpha', @@ -53,6 +53,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/nidhaloff/igel', - version='0.0.3', + version=__version__, zip_safe=False, )