This repository was archived by the owner on Jun 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414# See the License for the specific language governing permissions and
1515# limitations under the License.
1616#
17+ import os
1718import re
1819import 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+
4651setup (
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" ,
Original file line number Diff line number Diff line change 11import secrets
22
3- __version__ = "2.0.0 "
3+ __version__ = "2.0.1 "
44
55DEF_SIGN_ALG = {
66 "id_token" : "RS256" ,
You can’t perform that action at this time.
0 commit comments