cfb95100de4e52b6ad0e94162d17d6e6735bef27
[platform/upstream/gpgme.git] / lang / python / pyme / version.py.in
1 # Copyright (C) 2016 g10 Code GmbH
2 # Copyright (C) 2015 Ben McGinnes <ben@adversary.org>
3 # Copyright (C) 2004 Igor Belyi <belyi@users.sourceforge.net>
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but 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 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
18
19 from __future__ import absolute_import, print_function
20 del absolute_import, print_function
21
22 from . import gpgme
23
24 productname = 'pyme'
25 versionstr = "@VERSION@"
26 gpgme_versionstr = gpgme.GPGME_VERSION
27 in_tree_build = bool(gpgme.cvar.pyme_in_tree_build)
28
29 versionlist = versionstr.split(".")
30 major = versionlist[0]
31 minor = versionlist[1]
32 patch = versionlist[2]
33
34 copyright = """\
35 Copyright (C) 2016 g10 Code GmbH
36 Copyright (C) 2015 Ben McGinnes
37 Copyright (C) 2014-2015 Martin Albrecht
38 Copyright (C) 2004-2008 Igor Belyi
39 Copyright (C) 2002 John Goerzen"""
40
41 author = "The GnuPG hackers"
42 author_email = "gnupg-devel@gnupg.org"
43
44 description = "Python support for GPGME GnuPG cryptography library"
45 homepage = "https://gnupg.org"
46
47 license = """Copyright (C) 2016 g10 Code GmbH
48 Copyright (C) 2015 Ben McGinnes <ben@adversary.org>
49 Copyright (C) 2014, 2015 Martin Albrecht <martinralbrecht@googlemail.com>
50 Copyright (C) 2004, 2008 Igor Belyi <belyi@users.sourceforge.net>
51 Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
52
53 This library is free software; you can redistribute it and/or
54 modify it under the terms of the GNU Lesser General Public
55 License as published by the Free Software Foundation; either
56 version 2.1 of the License, or (at your option) any later version.
57
58 This library is distributed in the hope that it will be useful,
59 but WITHOUT ANY WARRANTY; without even the implied warranty of
60 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
61 Lesser General Public License for more details.
62
63 You should have received a copy of the GNU Lesser General Public
64 License along with this library; if not, write to the Free Software
65 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA"""
66
67 # Interface hygiene.  Keep this at the end.
68 del gpgme