mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-03-17 05:40:24 +00:00
20 lines
346 B
Python
20 lines
346 B
Python
"""
|
|
Django app for easy embeding YouTube and Vimeo videos and music from
|
|
SoundCloud.
|
|
"""
|
|
|
|
VERSION = (0, 11, 1, 'dev')
|
|
|
|
|
|
def get_release():
|
|
return '-'.join([get_version(), VERSION[-1]])
|
|
|
|
|
|
def get_version():
|
|
"""
|
|
Returns only digit parts of version.
|
|
"""
|
|
return '.'.join(str(i) for i in VERSION[:3])
|
|
|
|
|
|
__version__ = get_release()
|