mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-15 00:44:10 +09:00
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:
4
setup.py
4
setup.py
@@ -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',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user