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 Apr 15, 2020
1 parent 3d8c146 commit 7d2c7d2
Show file tree
Hide file tree
Showing 7 changed files with 2,370 additions and 8 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -1,2 +1,4 @@
include artellapipe/tools/assetsmanager/__logging__.ini
recursive-include artellapipe/tools/assetsmanager/* *.*
include versioneer.py
include artellapipe/tools/assetsmanager/_version.py
16 changes: 14 additions & 2 deletions artellapipe/tools/assetsmanager/__version__.py
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

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

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

__version__ = "0.0.7"
__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 7d2c7d2

Please sign in to comment.