diff --git a/setup.py b/setup.py index 8b03c90b..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 @@ -43,10 +44,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", @@ -64,7 +71,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",