Skip to content

Commit

Permalink
updated readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Aug 30, 2020
1 parent 89069be commit 160f6be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion igel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = "Nidhal Baccouri"
__email__ = '[email protected]'
__version__ = '0.0.3'
__version__ = '0.0.4'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -23,8 +23,8 @@
print("requirements: ", requirements)

setup(
author="Nidhal Baccouri",
author_email="[email protected]",
author=__author__,
author_email=__email__,
python_requires='>=3.6',
classifiers=[
# 'Development Status :: 2 - Pre-Alpha',
Expand Down Expand Up @@ -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,
)

0 comments on commit 160f6be

Please sign in to comment.