Add __about__.py to handle version number of project in one place

This commit is contained in:
2023-02-16 13:03:52 +01:00
parent 3771a7847e
commit 207a8e92e8
4 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
"""Metadata of package."""
__author__ = "Sven Sager <akira@revpimodio.org>"
__copyright__ = "Copyright (C) 2023 Sven Sager"
__license__ = "LGPLv2"
__version__ = "2.6.0rc5"

View File

@@ -22,9 +22,8 @@ __all__ = [
__author__ = "Sven Sager <akira@revpimodio.org>"
__copyright__ = "Copyright (C) 2023 Sven Sager"
__license__ = "LGPLv2"
__package__ = "revpimodio2"
__version__ = "2.6.0rc4"
from .__about__ import __version__
from ._internal import *
from .helper import Cycletools, EventCallback
from .io import IOEvent