Skip to content

Instantly share code, notes, and snippets.

@devniv
Created March 30, 2009 11:09
Show Gist options
  • Save devniv/87741 to your computer and use it in GitHub Desktop.
Save devniv/87741 to your computer and use it in GitHub Desktop.
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' ]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment