mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-10 19:36:38 +03:00
6 lines
148 B
Python
6 lines
148 B
Python
__version__ = "0.1.0"
|
|
__version_info__ = tuple(
|
|
int(num) if num.isdigit() else num
|
|
for num in __version__.replace("-", ".", 1).split(".")
|
|
)
|