We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ec706 commit a920a7bCopy full SHA for a920a7b
3 files changed
.gitignore
@@ -17,3 +17,7 @@ __pycache_
17
/build
18
/dist
19
/venv
20
+
21
+*.key
22
+*.crt
23
+*.pem
README.md
@@ -1,5 +1,7 @@
1
# OneLogin's SAML Python Toolkit
2
3
+[](https://coveralls.io/r/onelogin/python-saml)
4
5
Add SAML support to your Python softwares using this library.
6
Forget those complicated libraries and use that open source library provided
7
and supported by OneLogin Inc.
setup.py
@@ -32,4 +32,16 @@
32
'isodate==0.5.0',
33
'defusedxml==0.4.1',
34
]
35
+ extras_require={
36
+ 'test': (
37
+ # Test runner.
38
+ 'pytest',
39
40
+ # Ensure PEP8 conformance.
41
+ 'pytest-pep8',
42
43
+ # Ensure test coverage.
44
+ 'pytest-cov',
45
+ )
46
+ }
47
)
0 commit comments