From 92b49fbb4a5b29abb04b98ce4740593a8068bae5 Mon Sep 17 00:00:00 2001 From: Mike Marzigliano Date: Tue, 1 Oct 2019 13:56:39 -0400 Subject: [PATCH] twine didn't like the triple tick-mark in the README file, so I'm removing it when uploading to pypi --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e0eb96d..c9d0387 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup with open('README.md') as f: - readme = f.read() + readme = f.read().replace('```', '') setup( name='geminipy',