-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (31 loc) · 964 Bytes
/
setup.py
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
30
31
32
33
34
"""
Python HKP procol client implementation based on the
`current draft spec <http://tools.ietf.org/html/draft-shaw-openpgp-hkp-00>`_.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='python-hkp',
version='0.1.3',
url='https://github.com/dgladkov/python-hkp/',
license='BSD',
author='Dmitry Gladkov',
description='Python HKP client',
long_description=__doc__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=['hkp'],
platforms='any',
test_suite = "hkp.tests",
tests_require=["dingus==0.3.2"],
)