From 9277cd22c555eb0707ddf341f10f9afcaafe670f Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 17:49:53 +0200 Subject: [PATCH] adding markdown as content type of the readme for pypi --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9078636..1bb8abf 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='asciiWriter', - version='0.0.1', + version='0.0.2', author='Gijs de Heij, Manetta Berends', author_email='info@varia.zone', packages=['asciiWriter', 'asciiWriter.examples'], @@ -18,7 +18,6 @@ setup( keywords=['plaintext', 'layout software', 'ascii art'], description='A python library to draw with ASCII (but with Unicode)', long_description=open('README.txt').read(), - install_requires=[ - "pillow" - ], + long_description_content_type='text/markdown', + install_requires=[], ) \ No newline at end of file