Remove crypto dependencies, which are now handles by securesystemslib

This commit is contained in:
Vladimir Diaz 2017-01-13 10:26:47 -05:00
parent ed2546361b
commit 7720b74cba
2 changed files with 1 additions and 7 deletions

View file

@ -19,7 +19,7 @@ cffi==1.7.0
pycrypto==2.6.1
pynacl==1.0.1
cryptography==1.4.0
securesystemslib==0.10.0
securesystemslib==0.10.1
# Testing requirements. The rest of the testing dependencies available in
# 'tox.ini'

View file

@ -71,11 +71,6 @@
from setuptools import setup
from setuptools import find_packages
extras = {
'tools': ['cryptography>=1.4.0', 'pycrypto>=2.6.1', 'pynacl>=0.2.3',
'securesystemslib>=0.10.0']
}
with open('README.rst') as file_object:
long_description = file_object.read()
@ -111,7 +106,6 @@
],
install_requires = ['iso8601', 'six', 'securesystemslib'],
packages = find_packages(exclude=['tests']),
extras_require = extras,
scripts = [
'tuf/scripts/basic_client.py',
'tuf/scripts/tufcli.py'