Skip to content

Commit

Permalink
Add latest pyspx as optional dependency
Browse files Browse the repository at this point in the history
Add pyspx to `extra_require` in setup.py, to optionally install
e.g. with `pip install securesystemslib[pyspx]`.
  • Loading branch information
lukpueh committed Jun 18, 2019
1 parent 5458f62 commit 154bee1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
],
install_requires = ['six>=1.11.0'],
extras_require = {'crypto': ['cryptography>=2.2.2', 'colorama>=0.3.9'],
'pynacl': ['pynacl>1.2.0']},
'pynacl': ['pynacl>1.2.0'],
'pyspx': ['pyspx>=0.4.0']},
packages = find_packages(exclude=['tests', 'debian']),
scripts = []
)

0 comments on commit 154bee1

Please sign in to comment.