root / snf-astakos-app / astakos / __init__.py @ 26498848
History | View | Annotate | Download (1.9 kB)
1 | 64cd4730 | Antony Chazapis | # Copyright (c) Django Software Foundation and individual contributors.
|
---|---|---|---|
2 | 64cd4730 | Antony Chazapis | # All rights reserved.
|
3 | 5ce3ce4f | Sofia Papagiannaki | #
|
4 | 64cd4730 | Antony Chazapis | # Redistribution and use in source and binary forms, with or without modification,
|
5 | 64cd4730 | Antony Chazapis | # are permitted provided that the following conditions are met:
|
6 | 5ce3ce4f | Sofia Papagiannaki | #
|
7 | 5ce3ce4f | Sofia Papagiannaki | # 1. Redistributions of source code must retain the above copyright notice,
|
8 | 64cd4730 | Antony Chazapis | # this list of conditions and the following disclaimer.
|
9 | 5ce3ce4f | Sofia Papagiannaki | #
|
10 | 5ce3ce4f | Sofia Papagiannaki | # 2. Redistributions in binary form must reproduce the above copyright
|
11 | 64cd4730 | Antony Chazapis | # notice, this list of conditions and the following disclaimer in the
|
12 | 64cd4730 | Antony Chazapis | # documentation and/or other materials provided with the distribution.
|
13 | 5ce3ce4f | Sofia Papagiannaki | #
|
14 | 64cd4730 | Antony Chazapis | # 3. Neither the name of Django nor the names of its contributors may be used
|
15 | 64cd4730 | Antony Chazapis | # to endorse or promote products derived from this software without
|
16 | 64cd4730 | Antony Chazapis | # specific prior written permission.
|
17 | 5ce3ce4f | Sofia Papagiannaki | #
|
18 | 64cd4730 | Antony Chazapis | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19 | 64cd4730 | Antony Chazapis | # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20 | 64cd4730 | Antony Chazapis | # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21 | 64cd4730 | Antony Chazapis | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
22 | 64cd4730 | Antony Chazapis | # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
23 | 64cd4730 | Antony Chazapis | # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
24 | 64cd4730 | Antony Chazapis | # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
25 | 64cd4730 | Antony Chazapis | # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26 | 64cd4730 | Antony Chazapis | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27 | 64cd4730 | Antony Chazapis | # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
28 | 64cd4730 | Antony Chazapis | |
29 | 884301db | Antony Chazapis | VERSION = (0, 3, 0, 'alpha', 0) |
30 | 64cd4730 | Antony Chazapis | |
31 | 5ce3ce4f | Sofia Papagiannaki | |
32 | 64cd4730 | Antony Chazapis | def get_version(): |
33 | 64cd4730 | Antony Chazapis | version = '%s.%s' % (VERSION[0], VERSION[1]) |
34 | 64cd4730 | Antony Chazapis | if VERSION[2]: |
35 | 64cd4730 | Antony Chazapis | version = '%s.%s' % (version, VERSION[2]) |
36 | 64cd4730 | Antony Chazapis | if VERSION[3:] == ('alpha', 0): |
37 | 64cd4730 | Antony Chazapis | version = '%s pre-alpha' % version
|
38 | 64cd4730 | Antony Chazapis | else:
|
39 | 64cd4730 | Antony Chazapis | if VERSION[3] != 'final': |
40 | 64cd4730 | Antony Chazapis | version = '%s %s %s' % (version, VERSION[3], VERSION[4]) |
41 | 64cd4730 | Antony Chazapis | return version |