diff --git a/niklib/version.py b/niklib/version.py deleted file mode 100644 index 7c62aad..0000000 --- a/niklib/version.py +++ /dev/null @@ -1,20 +0,0 @@ -__all__ = [ - 'VERSION_SHORT', 'VERSION' -] - -_MAJOR = '0' -_MINOR = '1' -_REVISION = '0' - -VERSION_SHORT = f'{_MAJOR}.{_MINOR}' -"""Version of the package as ``major.minor`` - -Suggested usage for stable production where breaking updates -is not so common. -""" -VERSION = f'{_MAJOR}.{_MINOR}.{_REVISION}' -"""Version of the package as ``major.minor.revision.stage.version`` - -Suggested usage for dev, alpha and beta where breaking updates -are frequent. -"""