mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
* Allowed '/' in protocol name * Added SymmetricState.GetHandshakeHash() * Added CipherState.SetNonce() * Unittests to ensure that each of above is working Closes #3
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
from setuptools import setup, find_packages
|
|
from codecs import open
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
try:
|
|
import pypandoc
|
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|
long_description = pypandoc.convert('README.md', 'rst')
|
|
except (IOError, ImportError):
|
|
long_description = 'Check https://github.com/plizonczyk/noiseprotocol for readme.'
|
|
|
|
setup(
|
|
name='noiseprotocol',
|
|
version='0.2.0',
|
|
description='Implementation of Noise Protocol Framework',
|
|
long_description=long_description,
|
|
url='https://github.com/plizonczyk/noiseprotocol',
|
|
author='Piotr Lizonczyk',
|
|
author_email='plizonczyk.public@gmail.com',
|
|
license='MIT',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Security :: Cryptography',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
# 'Programming Language :: Python :: 3.7',
|
|
],
|
|
keywords='cryptography noiseprotocol noise security',
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
|
|
install_requires=['cryptography==2.1.1'],
|
|
python_requires='~=3.5,~=3.6',
|
|
)
|