mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 23:21:13 +01:00
9 lines
274 B
Python
9 lines
274 B
Python
|
""" Store the version here so:
|
||
|
# 1) we don't load dependencies by storing it in __init__.py
|
||
|
# 2) we can import it in setup.py for the same reason
|
||
|
# 3) we can import it into your module module
|
||
|
"""
|
||
|
|
||
|
__version_info__ = ('0', '41', '0')
|
||
|
__version__ = '.'.join(__version_info__)
|