diff --git a/.gitignore b/.gitignore index fefb0574a..c7226ca5b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ *.pyc -*.metric-db -/.cache +.cache +.pytest_cache + experiment.xml +docs/_build + +*.metric-db diff --git a/docs/source/hatchet.rst b/docs/source/hatchet.rst index 3b107e9da..f816a0272 100644 --- a/docs/source/hatchet.rst +++ b/docs/source/hatchet.rst @@ -60,4 +60,6 @@ Subpackages .. toctree:: hatchet.external + hatchet.util + diff --git a/docs/source/hatchet.util.rst b/docs/source/hatchet.util.rst new file mode 100644 index 000000000..dea9846f4 --- /dev/null +++ b/docs/source/hatchet.util.rst @@ -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: diff --git a/setup.py b/setup.py index 697cf7123..afba23f31 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,6 @@ 'License :: OSI Approved :: MIT License', ], keywords='', - packages = ['hatchet', 'hatchet.external'], + packages = ['hatchet', 'hatchet.util', 'hatchet.external'], )