manuskript/manuskript/version.py
Curtis Gedak 5d462d6a47 Single source the package version
Define one place to store the Manuskript version so that it can be
used in multiple locations.

Reference:

Single-sourcing the package version
https://packaging.python.org/guides/single-sourcing-package-version/
2017-09-28 13:54:53 -06:00

10 lines
200 B
Python

# --!-- coding: utf8 --!--
# Single source the package version
# https://packaging.python.org/guides/single-sourcing-package-version/
__version__ = "0.4.0"
def getVersion():
return __version__