This repository was archived by the owner on Jun 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed 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
@@ -47,10 +48,16 @@ def run_tests(self):
4748 version = re .search (r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]' ,
4849 fd .read (), re .MULTILINE ).group (1 )
4950
51+ with open (os .path .join (os .path .dirname (__file__ ), 'README.md' )) as readme :
52+ README = readme .read ()
53+
54+
5055setup (
5156 name = "oidcrp" ,
5257 version = version ,
5358 description = "Python implementation of OAuth2 Client and OpenID Connect RP" ,
59+ long_description = README ,
60+ long_description_content_type = 'text/markdown' ,
5461 author = "Roland Hedberg" ,
55625663 license = "Apache 2.0" ,
@@ -59,7 +66,7 @@ def run_tests(self):
5966 "oidcrp/oauth2/add_on" , "oidcrp/oauth2/client_credentials" ],
6067 package_dir = {"" : "src" },
6168 classifiers = [
62- "Development Status :: 4 - Beta " ,
69+ "Development Status :: 5 - Production/Stable " ,
6370 "License :: OSI Approved :: Apache Software License" ,
6471 "Programming Language :: Python :: 3.6" ,
6572 "Programming Language :: Python :: 3.7" ,
You can’t perform that action at this time.
0 commit comments