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:
parent
609c432e68
commit
5c0a797b66
1 changed files with 8 additions and 4 deletions
12
setup.py
12
setup.py
|
@ -2,14 +2,18 @@
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
with open("README.rst") as readme:
|
long_description = """
|
||||||
long_description = readme.read()
|
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(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.15.1',
|
version='0.15.1',
|
||||||
description='Interact with Mastodon social networks from the command line.',
|
description='Mastodon CLI client',
|
||||||
long_description=long_description,
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
author_email='ivan@habunek.com',
|
author_email='ivan@habunek.com',
|
||||||
url='https://github.com/ihabunek/toot/',
|
url='https://github.com/ihabunek/toot/',
|
||||||
|
|
Loading…
Reference in a new issue