Skip to content

Commit

Permalink
VERSION file moved inside rhapsody module
Browse files Browse the repository at this point in the history
  • Loading branch information
luponzo86 committed Dec 10, 2019
1 parent d9e6318 commit 5b69dee
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/rhapsody.utils.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------------------

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rhapsody/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 5b69dee

Please sign in to comment.