mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Remove crypto dependencies, which are now handles by securesystemslib
This commit is contained in:
parent
ed2546361b
commit
7720b74cba
2 changed files with 1 additions and 7 deletions
|
|
@ -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'
|
||||
|
|
|
|||
6
setup.py
6
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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue