Skip to content

Commit a920a7b

Browse files
committed
Setup environment
1 parent 12ec706 commit a920a7b

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ __pycache_
1717
/build
1818
/dist
1919
/venv
20+
21+
*.key
22+
*.crt
23+
*.pem

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# OneLogin's SAML Python Toolkit
22

3+
[![Coverage Status](https://coveralls.io/repos/onelogin/python-saml/badge.png)](https://coveralls.io/r/onelogin/python-saml)
4+
35
Add SAML support to your Python softwares using this library.
46
Forget those complicated libraries and use that open source library provided
57
and supported by OneLogin Inc.

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,16 @@
3232
'isodate==0.5.0',
3333
'defusedxml==0.4.1',
3434
]
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+
}
3547
)

0 commit comments

Comments
 (0)