diff options
author | Ben McGinnes <[email protected]> | 2018-08-18 08:19:16 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-08-18 08:19:16 +0000 |
commit | fc55caccfc87253e1703df66b21917cc399fba62 (patch) | |
tree | 258d6f752aaa0eea60ea3d5e9bab4dddcf0a91aa /lang/python/version.py.in | |
parent | Python bindings constants: PEP8 compliance (almost) (diff) | |
download | gpgme-fc55caccfc87253e1703df66b21917cc399fba62.tar.gz gpgme-fc55caccfc87253e1703df66b21917cc399fba62.zip |
Python bindings setup: Near PEP8 compliance
* lang/python/version.py.in: Fixed most things, but there's still an
issue near the build portion with the existing Python bugs referenced.
* lang/python/setup.py.in: Now PEP8 compliant.
Diffstat (limited to 'lang/python/version.py.in')
-rw-r--r-- | lang/python/version.py.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lang/python/version.py.in b/lang/python/version.py.in index 1a1baf08..ad76edab 100644 --- a/lang/python/version.py.in +++ b/lang/python/version.py.in @@ -1,4 +1,6 @@ -# Copyright (C) 2016 g10 Code GmbH +# -*- coding: utf-8 -*- + +# Copyright (C) 2016-2018 g10 Code GmbH # Copyright (C) 2015 Ben McGinnes <[email protected]> # Copyright (C) 2004 Igor Belyi <[email protected]> # @@ -17,10 +19,11 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from __future__ import absolute_import, print_function -del absolute_import, print_function from . import gpgme +del absolute_import, print_function + productname = 'gpg' versionstr = "@VERSION@" gpgme_versionstr = gpgme.GPGME_VERSION @@ -32,8 +35,8 @@ minor = versionlist[1] patch = versionlist[2] copyright = """\ -Copyright (C) 2016 g10 Code GmbH -Copyright (C) 2015 Ben McGinnes +Copyright (C) 2016-2018 g10 Code GmbH +Copyright (C) 2015 Benjamin D. McGinnes Copyright (C) 2014-2015 Martin Albrecht Copyright (C) 2004-2008 Igor Belyi Copyright (C) 2002 John Goerzen""" @@ -44,8 +47,8 @@ author_email = "[email protected]" description = "Python support for GPGME GnuPG cryptography library" homepage = "https://gnupg.org" -license = """Copyright (C) 2016 g10 Code GmbH -Copyright (C) 2015 Ben McGinnes <[email protected]> +license = """Copyright (C) 2016-2018 g10 Code GmbH +Copyright (C) 2015 Benjamin D. McGinnes <[email protected]> Copyright (C) 2014, 2015 Martin Albrecht <[email protected]> Copyright (C) 2004, 2008 Igor Belyi <[email protected]> Copyright (C) 2002 John Goerzen <[email protected]> |