From 2da7071e5cd8743cc21cedf53323210c8af3920d Mon Sep 17 00:00:00 2001 From: peppelinux Date: Sat, 12 Jun 2021 14:13:58 +0200 Subject: [PATCH 1/3] v2.0.1 --- setup.py | 2 +- src/oidcop/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8b03c90b..021c13e9 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def run_tests(self): "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules"], install_requires=[ - "oidcmsg==1.3.2", + "oidcmsg==1.3.3", "cryptojwt==1.5.2", "pyyaml", "jinja2>=2.11.3", diff --git a/src/oidcop/__init__.py b/src/oidcop/__init__.py index 1335e726..83246c0e 100644 --- a/src/oidcop/__init__.py +++ b/src/oidcop/__init__.py @@ -1,6 +1,6 @@ import secrets -__version__ = "2.0.0" +__version__ = "2.0.1" DEF_SIGN_ALG = { "id_token": "RS256", From afed0b5c1427d20fb4bdacc294ab502396b58dce Mon Sep 17 00:00:00 2001 From: peppelinux Date: Sat, 12 Jun 2021 14:49:36 +0200 Subject: [PATCH 2/3] fix: setup.py descriptions and long description --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 021c13e9..b2c4fedc 100644 --- a/setup.py +++ b/setup.py @@ -43,10 +43,16 @@ def run_tests(self): version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: + README = readme.read() + + setup( name="oidcop", version=version, description="Python implementation of OIDC Provider", + long_description=README, + long_description_content_type='text/markdown', author="Roland Hedberg", author_email="roland@catalogix.se", license="Apache 2.0", From d5037ae2a27bd010702130834138a74dc59afce4 Mon Sep 17 00:00:00 2001 From: peppelinux Date: Sat, 12 Jun 2021 14:56:11 +0200 Subject: [PATCH 3/3] fix: setup.py imports --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b2c4fedc..22d2297a 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # +import os import re import sys