.
1 #!/usr/bin/python3
2 """
3 Copyright (C) 2013 2014 2016 Johan Mattsson
4
5 This library is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 3 of the
8 License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14 """
15
16 VERSION = '2.16.4'
17 SO_VERSION_MAJOR = '36'
18 SO_VERSION_MINOR = '0'
19 SO_VERSION = SO_VERSION_MAJOR + '.' + SO_VERSION_MINOR
20
21 LIBBIRDGEMS_SO_VERSION_MAJOR = '0'
22 LIBBIRDGEMS_SO_VERSION_MINOR = '0'
23 LIBBIRDGEMS_SO_VERSION = LIBBIRDGEMS_SO_VERSION_MAJOR + '.' + LIBBIRDGEMS_SO_VERSION_MINOR
24
25 LIBSVGBIRD_SO_VERSION_MAJOR = '0'
26 LIBSVGBIRD_SO_VERSION_MINOR = '0'
27 LIBSVGBIRD_SO_VERSION = LIBBIRDGEMS_SO_VERSION_MAJOR + '.' + LIBBIRDGEMS_SO_VERSION_MINOR
28