Skip to content

Commit

Permalink
v0.4.1 - setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Mar 19, 2021
1 parent 6a3dd87 commit 3f5d19c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,10 @@ References
----------

TLS/SSL tests

- [https://github.com/nabla-c0d3/sslyze](https://github.com/nabla-c0d3/sslyze)
````
pip install --upgrade sslyze
sslyze www.that-sp.org --json_out ssl.log
````
- [https://testssl.sh/](https://testssl.sh/)
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ requests>=2.25.1
pyXMLSecurity>=0.21
lxml>=4.6.2
Jinja2>=2.11.3
sslyze>=4.0.4
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def readme():

setup(
name='spid_sp_test',
version='0.4.0',
version='0.4.1',
description="SAML2 SPID Service Provider validation tool that can be run from the command line",
long_description=readme(),
long_description_content_type='text/markdown',
Expand All @@ -30,11 +30,13 @@ def readme():
recursive=True)]
},
install_requires=[
'lxml',
'pysaml2',
'xmlschema',
'requests',
'pyXMLSecurity'
'pysaml2>=6.5.1',
'xmlschema>=1.5.1',
'requests>=2.25.1',
'pyXMLSecurity>=0.21',
'lxml>=4.6.2',
'Jinja2>=2.11.3',
'sslyze>=4.0.4',
],
)

0 comments on commit 3f5d19c

Please sign in to comment.