345c0edf09
- Syndication extension - Remove six dependency - Fix typo, schema to scheme - Fixed Localized Time Formatting Issues - Added Support for XML Declaration Signed-off-by: Lars Kiesow <lkiesow@uos.de>
25 lines
622 B
Python
25 lines
622 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
feedgen.version
|
|
~~~~~~~~~~~~~~~
|
|
|
|
:copyright: 2013-2015, Lars Kiesow <lkiesow@uos.de>
|
|
|
|
:license: FreeBSD and LGPL, see license.* for more details.
|
|
|
|
'''
|
|
|
|
'Version of python-feedgen represented as tuple'
|
|
version = (0, 3, 2)
|
|
|
|
|
|
'Version of python-feedgen represented as string'
|
|
version_str = '.'.join([str(x) for x in version])
|
|
|
|
version_major = version[:1]
|
|
version_minor = version[:2]
|
|
version_full = version
|
|
|
|
version_major_str = '.'.join([str(x) for x in version_major])
|
|
version_minor_str = '.'.join([str(x) for x in version_minor])
|
|
version_full_str = '.'.join([str(x) for x in version_full])
|