Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import re
import sys

Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/oidcop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import secrets

__version__ = "2.0.0"
__version__ = "2.0.1"

DEF_SIGN_ALG = {
"id_token": "RS256",
Expand Down