From b4dfce2ed9bbfb55c7b83bac35625e235a9b8cd3 Mon Sep 17 00:00:00 2001 From: Quentin Ferrand Date: Sun, 24 Apr 2022 22:20:51 +0200 Subject: [PATCH] remove long description on setup.py because pypi whines about it --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index c90a8c5..42d7291 100644 --- a/setup.py +++ b/setup.py @@ -16,14 +16,8 @@ import os.path readme = '' here = os.path.abspath(os.path.dirname(__file__)) -readme_path = os.path.join(here, 'README.md') -if os.path.exists(readme_path): - with open(readme_path, 'rb') as stream: - readme = stream.read().decode('utf8') - setup( - long_description=readme, name='tenkan', version='0.1.5', description='RSS/atom feed converter from html to gemini',