feat: Add python base project files

These files create a callable Python package and manage the version
number of the complete project in the __about__.py file only. All other
parts, including Makefile, will use that version number.
This commit is contained in:
Sven Sager
2023-10-02 14:46:06 +02:00
committed by Sven Sager
parent 251bec2b38
commit cc5eb516bf
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2025 KUNBUS GmbH
# SPDX-License-Identifier: GPL-2.0-or-later
"""Package: revpi_middleware."""
from .__about__ import __author__, __copyright__, __license__, __version__