bump version
This commit is contained in:
parent
8b294a4b5b
commit
933d2e5a06
|
@ -20,7 +20,7 @@ Alternatively you can donate cryptocurrencies:
|
|||
[Installation Guide](http://feed2toot.readthedocs.org/en/latest/install.html)*
|
||||
|
||||
|
||||
# tar zxvf feed2toot-0.4.tar.gz
|
||||
# tar zxvf feed2toot-0.5.tar.gz
|
||||
# cd feed2toot
|
||||
# python3 setup.py install
|
||||
# # or
|
||||
|
|
|
@ -25,7 +25,7 @@ Alternatively, Setuptools may be installed to a user-local path::
|
|||
|
||||
* Untar the tarball and go to the source directory with the following commands::
|
||||
|
||||
$ tar zxvf feed2toot-0.4.tar.gz
|
||||
$ tar zxvf feed2toot-0.5.tar.gz
|
||||
$ cd feed2toot
|
||||
|
||||
* Next, to install Feed2toot on your computer, type the following command with the root user::
|
||||
|
|
|
@ -23,7 +23,7 @@ import logging
|
|||
import os.path
|
||||
import sys
|
||||
|
||||
__version__ = '0.4'
|
||||
__version__ = '0.5'
|
||||
|
||||
class CliParse(object):
|
||||
'''CliParse class'''
|
||||
|
|
6
setup.py
6
setup.py
|
@ -31,15 +31,15 @@ CLASSIFIERS = [
|
|||
|
||||
setup(
|
||||
name='feed2toot',
|
||||
version='0.4',
|
||||
version='0.5',
|
||||
license='GNU GPL v3',
|
||||
description='Parse rss feed and tweet new posts to Mastodon',
|
||||
long_description='Parse rss feed and tweet new posts to the Mastodon social network',
|
||||
author = 'Carl Chenet',
|
||||
author_email = 'chaica@ohmytux.com',
|
||||
url = 'https://github.com/chaica/feed2toot',
|
||||
url = 'https://gitlab.com/chaica/feed2toot',
|
||||
classifiers=CLASSIFIERS,
|
||||
download_url='https://github.com/chaica/feed2toot',
|
||||
download_url='https://gitlab.com/chaica/feed2toot',
|
||||
packages=find_packages(),
|
||||
scripts=['scripts/feed2toot', 'scripts/register_feed2toot_app'],
|
||||
install_requires=['feedparser', 'Mastodon.py'],
|
||||
|
|
Loading…
Reference in a new issue