Skip to content

Commit 9ed11b4

Browse files
authored
Merge pull request #89 from OmenApps/master
Added long_description and url to GitHub Repo for use on PyPI
2 parents f0be3f5 + 2def91a commit 9ed11b4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
import glob
1919
import re
20+
import io
21+
from os.path import exists
2022

2123
from setuptools import setup
2224

@@ -30,9 +32,11 @@
3032
name="pyjwkest",
3133
version=version,
3234
description="Python implementation of JWT, JWE, JWS and JWK",
35+
long_description=io.open('README.rst', encoding='utf-8').read() if exists("README.rst") else "",
3336
author="Roland Hedberg",
3437
author_email="[email protected]",
3538
license="Apache 2.0",
39+
url='https://github.com/IdentityPython/pyjwkest',
3640
packages=["jwkest"],
3741
package_dir={"": "src"},
3842
classifiers=[

0 commit comments

Comments
 (0)