From ed9b88a1efbb933f49ef8942f2468a393be92443 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sun, 17 Mar 2019 18:27:03 -0700 Subject: [PATCH] Update README type in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aec6987..e85c11c 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -with open("README.md", "r") as fh: +with open("README.rst", "r") as fh: long_description = fh.read() setuptools.setup( @@ -10,7 +10,7 @@ setuptools.setup( author_email="erictorres4@protonmail.com", description="An rsync-based tool for creating backups", long_description=long_description, - long_description_content_type="text/markdown", + long_description_content_type="text/plain", url="", packages=setuptools.find_packages(), scripts=["bin/backup"],