From 412e47ca40e26608e12ebbe14ad20710ca313f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Boros?= Date: Fri, 18 Jan 2019 10:48:09 +0100 Subject: [PATCH] Fix long description --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b4da86c5..ae1f6a0b 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ zip_safe=True, version=VERSION, description='Python driver library for the RethinkDB database server.', - long_description=__doc__, + long_description=open('README.md', 'r').read(), url='https://github.com/RethinkDB/rethinkdb-python', maintainer='RethinkDB.', maintainer_email='bugs@rethinkdb.com', @@ -69,6 +69,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], packages=[ 'rethinkdb',