django-embed-video/embed_video/__init__.py
2013-10-04 11:11:09 +02:00

20 lines
341 B
Python

"""
Django app for easy embeding YouTube and Vimeo videos and music from
SoundCloud.
"""
VERSION = (0, 7, 'dev')
def get_release():
return '.'.join(str(i) for i in VERSION[:3])
def get_version():
"""
Returns only digit parts of version.
"""
return '.'.join(str(i) for i in VERSION[:2])
__version__ = get_release()