From e22072a34daeb0119d9b68f270b6e76c7591ff9b Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 17 Oct 2019 14:21:51 -0500 Subject: [PATCH] Add Description metadata through setup.py long_description --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index e41fb81..cb2ba88 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,9 @@ if match: else: raise RuntimeError("Unable to find version string in %s." % (VERSION_FILE,)) +with open("README.md") as readme_file: + long_description = readme_file.read() + tests_require = [ "mock>=1.0.1", "nose>=1.3.3", @@ -22,6 +25,8 @@ tests_require = [ setup(name="tweepy", version=version, description="Twitter library for Python", + long_description=long_description, + long_description_content_type="text/markdown", license="MIT", author="Joshua Roesslein", author_email="tweepy@googlegroups.com", -- 2.25.1