comparison kallithea/__init__.py @ 4211:1948ede028ef kallithea-2.2.5-rebrand

RhodeCode GmbH is not the sole author of this work
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:05:52 -0400
parents ad38f9f93b3b
children 24c0d584ba86
comparison
equal deleted inserted replaced
4210:277684f23146 4211:1948ede028ef
16 ~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~
17 17
18 RhodeCode, a web based repository management based on pylons 18 RhodeCode, a web based repository management based on pylons
19 versioning implementation: http://www.python.org/dev/peps/pep-0386/ 19 versioning implementation: http://www.python.org/dev/peps/pep-0386/
20 20
21 This file was forked by the Kallithea project in July 2014.
22 Original author and date, and relevant copyright and licensing information is below:
21 :created_on: Apr 9, 2010 23 :created_on: Apr 9, 2010
22 :author: marcink 24 :author: marcink
23 :copyright: (c) 2013 RhodeCode GmbH. 25 :copyright: (c) 2013 RhodeCode GmbH, and others.
24 :license: GPLv3, see LICENSE.md for more details. 26 :license: GPLv3, see LICENSE.md for more details.
25 """ 27 """
26 28
27 import sys 29 import sys
28 import platform 30 import platform
53 __version__ = ('.'.join((str(each) for each in VERSION[:3]))) 55 __version__ = ('.'.join((str(each) for each in VERSION[:3])))
54 __dbversion__ = 31 # defines current db version for migrations 56 __dbversion__ = 31 # defines current db version for migrations
55 __platform__ = platform.system() 57 __platform__ = platform.system()
56 __license__ = 'GPLv3' 58 __license__ = 'GPLv3'
57 __py_version__ = sys.version_info 59 __py_version__ = sys.version_info
58 __author__ = 'RhodeCode GmbH' 60 __author__ = "Various Authors"
59 __url__ = 'https://kallithea-scm.org/' 61 __url__ = 'https://kallithea-scm.org/'
60 62
61 is_windows = __platform__ in ['Windows'] 63 is_windows = __platform__ in ['Windows']
62 is_unix = not is_windows 64 is_unix = not is_windows
63 65