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

Commit afed0b5

Browse files
committed
fix: setup.py descriptions and long description
1 parent 2da7071 commit afed0b5

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,16 @@ def run_tests(self):
4343
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
4444
fd.read(), re.MULTILINE).group(1)
4545

46+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
47+
README = readme.read()
48+
49+
4650
setup(
4751
name="oidcop",
4852
version=version,
4953
description="Python implementation of OIDC Provider",
54+
long_description=README,
55+
long_description_content_type='text/markdown',
5056
author="Roland Hedberg",
5157
author_email="roland@catalogix.se",
5258
license="Apache 2.0",

0 commit comments

Comments
 (0)