mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-24 10:34:06 +03:00
8 lines
189 B
Python
8 lines
189 B
Python
__version__ = "{{ cookiecutter.version }}"
|
|
__version_info__ = tuple(
|
|
[
|
|
int(num) if num.isdigit() else num
|
|
for num in __version__.replace("-", ".", 1).split(".")
|
|
]
|
|
)
|