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

Commit 18ea23c

Browse files
committed
v2.0.1 setup.py
1 parent 85cd6e8 commit 18ea23c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17+
import os
1718
import re
1819
import 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+
5055
setup(
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",
5562
author_email="[email protected]",
5663
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",

0 commit comments

Comments
 (0)