File: setup.py

package info (click to toggle)
python-pgpdump 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 244 kB
  • ctags: 145
  • sloc: python: 1,305; makefile: 21
file content (29 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (5)
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'
)