Don't put the README into long_description

formatting of the RST is flaky on pypi and looks bad in the debian
package description.
This commit is contained in:
Ivan Habunek 2017-12-29 12:10:40 +01:00
parent 609c432e68
commit 5c0a797b66
No known key found for this signature in database
GPG key ID: CDBD63C43A30BB95

View file

@ -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/',