raspiblitz/home.admin/BlitzPy/blitzpy/version.py

9 lines
281 B
Python
Raw Normal View History

2020-05-22 22:45:37 +01:00
""" 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
"""
2020-05-23 12:51:30 +01:00
__version_info__ = ('0', '2', '0')
2020-05-22 22:45:37 +01:00
__version__ = '.'.join(__version_info__)