forked from kimvais/ike
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (30 loc) · 1011 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
#!/usr/bin/env python3
from setuptools import setup
from ike import __version__
def readme():
with open('docs/readme.rst') as f:
return f.read()
setup(name='ike',
version='.'.join('{}'.format(x) for x in __version__),
description='Minimalistic Internet Key Exchange protocol v2 (RFC 5996) library',
long_description=readme(),
author='Kimmo Parviainen-Jalanko',
author_email='k@77.fi',
url='http://github.com/kimvais/ike/',
download_url='https://github.com/kimvais/ike/releases',
packages=['ike', 'ike.util'],
install_requires=[
'rsa',
'cryptography'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.4',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Security',
'Topic :: Security :: Cryptography',
]
)