BW3-Core/boswatch/utils/version.py

25 lines
798 B
Python
Raw Permalink Normal View History

2018-01-04 13:05:05 +01:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
r"""!
2018-01-04 13:05:05 +01:00
____ ____ ______ __ __ __ _____
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
German BOS Information Script
by Bastian Schroll
@file: version.py
@date: 14.12.2017
@author: Bastian Schroll
@description: Version numbers, branch and release date of BOSWatch
"""
2018-01-07 11:33:38 +01:00
import logging
logging.debug("- %s loaded", __name__)
2018-01-04 13:05:05 +01:00
client = {"major": 3, "minor": 0, "patch": 0}
server = {"major": 3, "minor": 0, "patch": 0}
2019-03-02 09:15:40 +01:00
date = {"day": 1, "month": 1, "year": 2019}
2018-01-04 13:05:05 +01:00
branch = "develop"