Cryptography version update (#10)

* 2.1 version of pyca/cryptography got released. Version bumped
* Python 3.5 support reintroduced, as we are now using BLAKE from
Cryptography, not hashlib
* Removed hashlib references, uncommented Cryptography references.
* Enum fix for python 3.5 compat

Closes #9
This commit is contained in:
Piotr Lizończyk
2017-10-11 18:58:07 +02:00
committed by GitHub
parent 81a2f7e845
commit 3bfb39883e
7 changed files with 52 additions and 57 deletions

View File

@@ -26,12 +26,12 @@ setup(
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.5',
'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',
python_requires='~=3.5,~=3.6',
)