We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0be3f5 + 2def91a commit 9ed11b4Copy full SHA for 9ed11b4
setup.py
@@ -17,6 +17,8 @@
17
18
import glob
19
import re
20
+import io
21
+from os.path import exists
22
23
from setuptools import setup
24
@@ -30,9 +32,11 @@
30
32
name="pyjwkest",
31
33
version=version,
34
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 "",
36
author="Roland Hedberg",
37
author_email="roland@catalogix.se",
38
license="Apache 2.0",
39
+ url='https://github.com/IdentityPython/pyjwkest',
40
packages=["jwkest"],
41
package_dir={"": "src"},
42
classifiers=[
0 commit comments