mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
Start adding feed support
This commit is contained in:
25
Source/Libs/feedgen/version.py
Normal file
25
Source/Libs/feedgen/version.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
'''
|
||||
feedgen.version
|
||||
~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2013-2018, Lars Kiesow <lkiesow@uos.de>
|
||||
|
||||
:license: FreeBSD and LGPL, see license.* for more details.
|
||||
|
||||
'''
|
||||
|
||||
'Version of python-feedgen represented as tuple'
|
||||
version = (0, 9, 0)
|
||||
|
||||
|
||||
'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])
|
Reference in New Issue
Block a user