File: setup.py

package info (click to toggle)
python-pgpdump 1.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 284 kB
  • sloc: python: 1,360; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (6)
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
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']
)