diff --git a/dev-requirements.txt b/dev-requirements.txt index c1ffab0d..4754221d 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -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' diff --git a/setup.py b/setup.py index 78887f1d..7c925dee 100755 --- a/setup.py +++ b/setup.py @@ -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'