mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
- Added readme - Updated setup.py - Removed pytest from requirements, added version of cryptography package - Small improvements in code: noise/noise_protocol.py: * removed unused one_way variable noise/patterns.py * fixed has_pre_messages - no longer a variable, but method - and now works properly noise/state.py * SymmetricState now holds reference to CipherState.
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
from codecs import open
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='noiseprotocol',
|
|
version='0.1.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.0.3'],
|
|
python_requires='~=3.6',
|
|
)
|