Skip to content

Commit

Permalink
Now versions are managed by versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoveda committed May 4, 2020
1 parent 1d80a62 commit 05f1647
Show file tree
Hide file tree
Showing 7 changed files with 2,371 additions and 9 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
@@ -1,2 +1,4 @@
include artellapipe/tools/playblastmanager/__logging__.ini
recursive-include artellapipe/tools/playblastmanager/resources/ *.*
recursive-include artellapipe/tools/playblastmanager/resources/ *.*
include versioneer.py
include artellapipe/tools/playblastmanager/_version.py
16 changes: 14 additions & 2 deletions artellapipe/tools/playblastmanager/__version__.py
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

"""
Module that defines package version for artellapipe-tools-playblastmanager
Version module for artellapipe-tools-playblastmanager
"""

from __future__ import print_function, division, absolute_import
Expand All @@ -12,4 +12,16 @@
__maintainer__ = "Tomas Poveda"
__email__ = "tpovedatd@gmail.com"

__version__ = "0.0.6"
__version__ = None


def get_version():
global __version__
if __version__:
return __version__

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

return __version__

0 comments on commit 05f1647

Please sign in to comment.