1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pgpdump import __version__, __author__
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules'
]
setup(
name = 'pgpdump',
version = __version__,
author = __author__,
license = 'BSD',
description = 'PGP packet parser library',
url = 'https://github.com/toofishes/python-pgpdump',
keywords = 'pgp gpg rfc2440 rfc4880 crypto cryptography',
classifiers = classifiers,
packages = ['pgpdump'],
test_suite='pgpdump.test'
)
|