mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-25 12:23:43 +00:00
7 lines
189 B
Python
7 lines
189 B
Python
__version__ = "{{ cookiecutter.version }}"
|
|
__version_info__ = tuple(
|
|
[
|
|
int(num) if num.isdigit() else num
|
|
for num in __version__.replace("-", ".", 1).split(".")
|
|
]
|
|
)
|