Skip to content

Commit

Permalink
fixing setup author email and improving docs structure
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino committed Apr 23, 2019
1 parent de9d180 commit 9862315
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 26 deletions.
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ MiraiML Docs
:maxdepth: 2

user_guide
miraiml
the_api
internal_modules
20 changes: 20 additions & 0 deletions docs/internal_modules.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Internal modules
================

The documentation related to these modules is meant for developers.

miraiml.core
------------

.. automodule:: miraiml.core
:members:
:undoc-members:
:show-inheritance:

miraiml.util
------------

.. automodule:: miraiml.util
:members:
:undoc-members:
:show-inheritance:
23 changes: 2 additions & 21 deletions docs/miraiml.rst → docs/the_api.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package Content
===============
The API
=======

.. automodule:: miraiml

Expand All @@ -26,22 +26,3 @@ miraiml.Engine
:members:
:undoc-members:
:show-inheritance:

Internal modules
----------------

miraiml.core
++++++++++++

.. automodule:: miraiml.core
:members:
:undoc-members:
:show-inheritance:

miraiml.util
++++++++++++

.. automodule:: miraiml.util
:members:
:undoc-members:
:show-inheritance:
4 changes: 2 additions & 2 deletions docs/user_guide.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MiraiML User Guide
==================
User Guide
==========

Introduction
------------
Expand Down
2 changes: 1 addition & 1 deletion miraiml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>>> from miraiml import HyperSearchSpace, Config, Engine
"""

__version__ = '2.0.0'
__version__ = '2.0.1'

from .main import HyperSearchSpace, Config, Engine

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
version = VERSION,
packages = ["miraiml"],
author = "Arthur Paulino",
author_email = "arthurleonardo.ap@gmail.com.com",
author_email = "arthurleonardo.ap@gmail.com",
url = "https://github.com/arthurpaulino/miraiml",
description = "An asynchronous engine for continuous & autonomous machine\
learning, built for real-time usage",
Expand Down

0 comments on commit 9862315

Please sign in to comment.