##// END OF EJS Templates
release: 0.4.0
Thomas De Schampheleire -
r7531:19086c5d 0.4.0 stable
parent child Browse files
Show More
@@ -1,63 +1,63 b''
1 1 # -*- coding: utf-8 -*-
2 2 # This program is free software: you can redistribute it and/or modify
3 3 # it under the terms of the GNU General Public License as published by
4 4 # the Free Software Foundation, either version 3 of the License, or
5 5 # (at your option) any later version.
6 6 #
7 7 # This program is distributed in the hope that it will be useful,
8 8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 10 # GNU General Public License for more details.
11 11 #
12 12 # You should have received a copy of the GNU General Public License
13 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 14 """
15 15 kallithea
16 16 ~~~~~~~~~
17 17
18 18 Kallithea, a web based repository management system.
19 19
20 20 Versioning implementation: http://www.python.org/dev/peps/pep-0386/
21 21
22 22 This file was forked by the Kallithea project in July 2014.
23 23 Original author and date, and relevant copyright and licensing information is below:
24 24 :created_on: Apr 9, 2010
25 25 :author: marcink
26 26 :copyright: (c) 2013 RhodeCode GmbH, (C) 2014 Bradley M. Kuhn, and others.
27 27 :license: GPLv3, see LICENSE.md for more details.
28 28 """
29 29
30 30 import sys
31 31 import platform
32 32
33 VERSION = (0, 4, 0, 'rc2')
33 VERSION = (0, 4, 0)
34 34 BACKENDS = {
35 35 'hg': 'Mercurial repository',
36 36 'git': 'Git repository',
37 37 }
38 38
39 39 CELERY_ON = False
40 40 CELERY_EAGER = False
41 41
42 42 CONFIG = {}
43 43
44 44 # Linked module for extensions
45 45 EXTENSIONS = {}
46 46
47 47 try:
48 48 import kallithea.brand
49 49 except ImportError:
50 50 pass
51 51 else:
52 52 assert False, 'Database rebranding is no longer supported; see README.'
53 53
54 54
55 55 __version__ = '.'.join(str(each) for each in VERSION)
56 56 __platform__ = platform.system()
57 57 __license__ = 'GPLv3'
58 58 __py_version__ = sys.version_info
59 59 __author__ = "Various Authors"
60 60 __url__ = 'https://kallithea-scm.org/'
61 61
62 62 is_windows = __platform__ in ['Windows']
63 63 is_unix = not is_windows
General Comments 0
You need to be logged in to leave comments. Login now