Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
GnuPGInterface / setup.py
Size: Mime:
import distutils.core

long_description = """
GnuPGInterface is a Python module to interface with GnuPG.
It concentrates on interacting with GnuPG via filehandles,
providing access to control GnuPG via versatile and extensible means.

This module is based on GnuPG::Interface, a Perl module by the same author.
"""

distutils.core.setup( name = 'GnuPGInterface',
                      version = '0.3.2',
                      description = 'GnuPG interactions with file handles',
		      long_description = long_description,
                      author = 'Frank J. Tobin',
                      author_email = 'ftobin@users.sourceforge.net',
		      licence = 'LGPL',
		      platforms = 'POSIX',
		      keywords = 'GnuPG gpg',
                      url = 'http://py-gnupg.sourceforge.net/',
                      py_modules = [ 'GnuPGInterface' ]
                      )