Don't put the README into long_description - toot - Unnamed repository; edit th… | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 5c0a797b66faf3d6ef14549301bfd56df79dfc07 | |
parent 609c432e682012056f713ad2bf33f429efc9dafa | |
Author: Ivan Habunek <[email protected]> | |
Date: Fri, 29 Dec 2017 12:10:40 +0100 | |
Don't put the README into long_description | |
formatting of the RST is flaky on pypi and looks bad in the debian | |
package description. | |
Diffstat: | |
setup.py | 12 ++++++++---- | |
1 file changed, 8 insertions(+), 4 deletions(-) | |
--- | |
diff --git 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='[email protected]', | |
url='https://github.com/ihabunek/toot/', |