From 5c0a797b66faf3d6ef14549301bfd56df79dfc07 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Fri, 29 Dec 2017 12:10:40 +0100 Subject: [PATCH] Don't put the README into long_description formatting of the RST is flaky on pypi and looks bad in the debian package description. --- setup.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9e71535..12ee487 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,18 @@ from setuptools import setup -with open("README.rst") as readme: - long_description = readme.read() +long_description = """ +toot is a commandline tool for interacting with Mastodon social networks. +Allows posting text and media to the timeline, searching, following, muting +and blocking accounts and other actions. +Contains an experimental curses application for reading the timeline. +""" setup( name='toot', version='0.15.1', - description='Interact with Mastodon social networks from the command line.', - long_description=long_description, + description='Mastodon CLI client', + long_description=long_description.strip(), author='Ivan Habunek', author_email='ivan@habunek.com', url='https://github.com/ihabunek/toot/',