Skip to content

Commit

Permalink
docs: add util subpackage
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatele committed Aug 2, 2018
1 parent d88b2f4 commit dc59ba1
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
*.pyc
*.metric-db
/.cache
.cache
.pytest_cache

experiment.xml
docs/_build

*.metric-db
2 changes: 2 additions & 0 deletions docs/source/hatchet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,6 @@ Subpackages
.. toctree::

hatchet.external
hatchet.util


22 changes: 22 additions & 0 deletions docs/source/hatchet.util.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
hatchet.util package
====================

Submodules
----------

hatchet.util.timer module
-------------------------

.. automodule:: hatchet.util.timer
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: hatchet.util
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
'License :: OSI Approved :: MIT License',
],
keywords='',
packages = ['hatchet', 'hatchet.external'],
packages = ['hatchet', 'hatchet.util', 'hatchet.external'],
)

0 comments on commit dc59ba1

Please sign in to comment.