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

Commit

Permalink
fix: setup.py README
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Jun 2, 2021
1 parent d366cbf commit 1d00a5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 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,11 +44,14 @@ 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=read('README.md'),
long_description=README,
long_description_content_type='text/markdown',
author="Roland Hedberg",
author_email="[email protected]",
Expand Down

0 comments on commit 1d00a5c

Please sign in to comment.