From 9277cd22c555eb0707ddf341f10f9afcaafe670f Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 17:49:53 +0200 Subject: [PATCH 1/2] 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 From 2922c4f49223249adf6c666dc602985eff420310 Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 17:50:24 +0200 Subject: [PATCH 2/2] taking out the requirements in the readme --- README.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.txt b/README.txt index 57463e3..e9a048d 100644 --- a/README.txt +++ b/README.txt @@ -55,10 +55,6 @@ Work in progress :) -# Requirements - -* pillow - # Release (PyPi package building)