mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-13 04:56:36 +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(".")
|
|
)
|