Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit fcba2cd

Browse files
committed
2 parents 7bd2aa2 + 57ba7d9 commit fcba2cd

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
pyyaml
12
jinja2
3+
cryptography
4+
requests
5+
pycryptodomex
26
git+https://github.com/openid/JWTConnect-Python-CryptoJWT.git
37
git+https://github.com/openid/JWTConnect-Python-OidcMsg.git
48
git+https://github.com/openid/JWTConnect-Python-OidcService.git

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ def run_tests(self):
6868
"oidcmsg>=0.6.3",
6969
"oidcservice>=0.6.3",
7070
"cryptojwt>=0.7.0",
71-
"jinja2"
71+
"jinja2",
72+
"pyyaml",
73+
"pycryptodomex"
7274
],
7375
tests_require=[
7476
"pytest", "requests_mock", 'pytest-localserver'

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ envlist =
55
pypy3
66

77
[testenv]
8-
deps = -r requirements-dev.txt
8+
deps =
9+
-r requirements.txt
10+
-r requirements-dev.txt
911
whitelist_externals =
1012
tox
1113
commands =

0 commit comments

Comments
 (0)