aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/setup.py.in
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-07-12 14:20:35 +0000
committerJustus Winter <[email protected]>2016-07-12 16:34:12 +0000
commit57b51685528153f5a50ab0999feec25c83190501 (patch)
treeba32f178a3402a97f705e47516e06105bf3e1412 /lang/python/setup.py.in
parentm4: Don't set fpic for qt on windows (diff)
downloadgpgme-57b51685528153f5a50ab0999feec25c83190501.tar.gz
gpgme-57b51685528153f5a50ab0999feec25c83190501.zip
python: Improve python packaging.
* lang/python/Makefile.am: Sign source releases, and upload them. * lang/python/setup.py.in: Add categories. Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/setup.py.in')
-rwxr-xr-xlang/python/setup.py.in19
1 files changed, 18 insertions, 1 deletions
diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in
index 4667a9d5..787d6a3f 100755
--- a/lang/python/setup.py.in
+++ b/lang/python/setup.py.in
@@ -147,11 +147,28 @@ setup(name="pyme3",
cmdclass={'build': BuildExtFirstHack},
version="@VERSION@",
description='Python bindings for GPGME GnuPG cryptography library',
+ # XXX add a long description
+ #long_description=long_description,
author='The GnuPG hackers',
author_email='[email protected]',
url='https://www.gnupg.org',
ext_modules=[swige],
packages = ['pyme', 'pyme.constants', 'pyme.constants.data',
'pyme.constants.keylist', 'pyme.constants.sig'],
- license="LGPL2.1+ (the library), GPL2+ (tests and examples)"
+ license="LGPL2.1+ (the library), GPL2+ (tests and examples)",
+ classifiers=[
+ 'Development Status :: 4 - Beta',
+ 'Intended Audience :: Developers',
+ 'Topic :: Software Development :: Build Tools',
+ 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3 :: Only',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Operating System :: POSIX',
+ 'Operating System :: Microsoft :: Windows',
+ 'Topic :: Communications :: Email',
+ 'Topic :: Security :: Cryptography',
+ ],
)