mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
9 lines
205 B
Python
9 lines
205 B
Python
VERSION_MAJOR = 1
|
|
VERSION_MINOR = 5
|
|
VERSION_PATCH = 0
|
|
|
|
|
|
version = '{}.{}.{}'.format(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
|
|
__version__ = version
|
|
|
|
__all__ = ['version', 'version_info', '__version__']
|