django-embed-video/embed_video/__init__.py
2015-05-01 10:58:08 +02:00

20 lines
348 B
Python

"""
Django app for easy embeding YouTube and Vimeo videos and music from
SoundCloud.
"""
VERSION = (1, 0, 0, 'stable')
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()