diff --git a/docs/rhapsody.utils.rst b/docs/rhapsody.utils.rst index 73536ab..4b17180 100644 --- a/docs/rhapsody.utils.rst +++ b/docs/rhapsody.utils.rst @@ -9,6 +9,14 @@ rhapsody.utils package Submodules ---------- +rhapsody.utils.misc module +-------------------------- + +.. automodule:: rhapsody.utils.misc + :members: + :undoc-members: + :show-inheritance: + rhapsody.utils.settings module ------------------------------ diff --git a/VERSION b/rhapsody/VERSION similarity index 100% rename from VERSION rename to rhapsody/VERSION diff --git a/rhapsody/__init__.py b/rhapsody/__init__.py index c07620c..b07e565 100644 --- a/rhapsody/__init__.py +++ b/rhapsody/__init__.py @@ -6,7 +6,7 @@ from os import path here = path.abspath(path.dirname(__file__)) -with open(path.join(here, '../VERSION'), encoding='utf-8') as f: +with open(path.join(here, 'VERSION'), encoding='utf-8') as f: __version__ = f.read() __release__ = __version__ diff --git a/setup.py b/setup.py index 218bcf9..26e5944 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ __status__ = "Production" here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'VERSION'), encoding='utf-8') as f: +with open(path.join(here, 'rhapsody/VERSION'), encoding='utf-8') as f: version = f.read() with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read()