pull/112/head
Ivan Habunek 2019-09-03 16:12:16 +02:00
rodzic 20a8612232
commit 70faf47c91
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
4 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -4,7 +4,7 @@ Toot - a Mastodon CLI client
.. image:: https://raw.githubusercontent.com/ihabunek/toot/master/trumpet.png
Interact with Mastodon social network from the command line.
Toot is a CLI and TUI tool for interacting with Mastodon instances from the command line.
.. image:: https://img.shields.io/travis/ihabunek/toot.svg?maxAge=3600&style=flat-square
:target: https://travis-ci.org/ihabunek/toot

Wyświetl plik

@ -3,7 +3,7 @@ toot - Mastodon CLI client
.. image:: _static/trumpet.png
toot is a commandline tool for interacting with Mastodon social networks.
Toot is a CLI and TUI tool for interacting with Mastodon instances from the command line.
.. image:: https://img.shields.io/travis/ihabunek/toot.svg?maxAge=3600&style=flat-square
:target: https://travis-ci.org/ihabunek/toot

Wyświetl plik

@ -3,15 +3,16 @@
from setuptools import setup
long_description = """
toot is a commandline tool for interacting with Mastodon social networks.
Toot is a CLI and TUI tool for interacting with Mastodon instances from the
command line.
Allows posting text and media to the timeline, searching, following, muting
and blocking accounts and other actions.
Includes a curses-based terminal user interface (TUI).
"""
setup(
name='toot',
version='0.22.0',
version='0.23.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

Wyświetl plik

@ -2,7 +2,7 @@
from collections import namedtuple
__version__ = '0.22.0'
__version__ = '0.23.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])