python: Clarify that we support Python 2.7 too.

* lang/python/README: Use 'Python' instead of 'Python 3'.
* lang/python/pyme/version.py.in: Likewise.
* lang/python/setup.py.in: Add classifier for 2.7, drop 3 only.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2016-09-14 14:36:29 +02:00
parent 4011b2b2a1
commit 594c3b8b05
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ https://www.gnupg.org/related_software/gpgme/
PyMe uses SWIG to create wrapper functions with automatic type PyMe uses SWIG to create wrapper functions with automatic type
conversions. This way most of the functions and types are converted conversions. This way most of the functions and types are converted
from C into Python 3 automatically by SWIG, reducing the maintenance from C into Python automatically by SWIG, reducing the maintenance
cost of the binginds. cost of the binginds.
* Authors * Authors

View File

@ -41,7 +41,7 @@ Copyright (C) 2002 John Goerzen"""
author = "The GnuPG hackers" author = "The GnuPG hackers"
author_email = "gnupg-devel@gnupg.org" author_email = "gnupg-devel@gnupg.org"
description = "Python 3 support for GPGME GnuPG cryptography library" description = "Python support for GPGME GnuPG cryptography library"
homepage = "https://gnupg.org" homepage = "https://gnupg.org"
license = """Copyright (C) 2016 g10 Code GmbH license = """Copyright (C) 2016 g10 Code GmbH

View File

@ -175,8 +175,8 @@ setup(name="pyme3",
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',