django-embed-video/embed_video/__init__.py

21 lines
342 B
Python
Raw Normal View History

2013-08-23 10:25:32 +00:00
"""
Django app for easy embeding YouTube and Vimeo videos and music from
SoundCloud.
"""
2014-05-24 07:33:14 +00:00
VERSION = (0, 11, 'dev')
2013-08-23 10:25:32 +00:00
2013-08-23 11:37:44 +00:00
def get_release():
return '.'.join(str(i) for i in VERSION[:3])
2013-08-23 10:25:32 +00:00
def get_version():
"""
Returns only digit parts of version.
"""
return '.'.join(str(i) for i in VERSION[:2])
2013-08-23 11:37:44 +00:00
__version__ = get_release()