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

Commit 51d1011

Browse files
authored
Merge pull request #101 from IdentityPython/v2.0.1
v2.0.1
2 parents e444e2b + d5037ae commit 51d1011

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17+
import os
1718
import re
1819
import sys
1920

@@ -43,10 +44,16 @@ def run_tests(self):
4344
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
4445
fd.read(), re.MULTILINE).group(1)
4546

47+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
48+
README = readme.read()
49+
50+
4651
setup(
4752
name="oidcop",
4853
version=version,
4954
description="Python implementation of OIDC Provider",
55+
long_description=README,
56+
long_description_content_type='text/markdown',
5057
author="Roland Hedberg",
5158
author_email="roland@catalogix.se",
5259
license="Apache 2.0",
@@ -64,7 +71,7 @@ def run_tests(self):
6471
"Programming Language :: Python :: 3.8",
6572
"Topic :: Software Development :: Libraries :: Python Modules"],
6673
install_requires=[
67-
"oidcmsg==1.3.2",
74+
"oidcmsg==1.3.3",
6875
"cryptojwt==1.5.2",
6976
"pyyaml",
7077
"jinja2>=2.11.3",

src/oidcop/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import secrets
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.0.1"
44

55
DEF_SIGN_ALG = {
66
"id_token": "RS256",

0 commit comments

Comments
 (0)