remove long description on setup.py because pypi whines about it
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Quentin Ferrand 2022-04-24 22:20:51 +02:00
parent 171aa0e615
commit b4dfce2ed9

View file

@ -16,14 +16,8 @@ import os.path
readme = '' readme = ''
here = os.path.abspath(os.path.dirname(__file__)) 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( setup(
long_description=readme,
name='tenkan', name='tenkan',
version='0.1.5', version='0.1.5',
description='RSS/atom feed converter from html to gemini', description='RSS/atom feed converter from html to gemini',