From 3052be8a889570830164da418ff031b8d5430c2f Mon Sep 17 00:00:00 2001 From: Dontsov Evgeny Date: Wed, 13 Apr 2022 05:05:00 +0300 Subject: [PATCH] version 0.2 multiple users support --- README.rst | 31 +++++++++++++++---------------- setup.py | 4 ++-- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/README.rst b/README.rst index 8506dcb..88a0148 100644 --- a/README.rst +++ b/README.rst @@ -4,40 +4,39 @@ Unit-tests for `python-telegram-bot Updater: @@ -102,7 +101,7 @@ We need to separate updater.idle() and creating Updater(). 2. Add fixture 'bot' to you fixture.py file. Example: -.. code:: python +.. code:: import pytest from import diff --git a/setup.py b/setup.py index b59b6c8..8a5b114 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ """ Create Packet: - python setup.py sdist --formats=zip bdist_wheel # или --formats=gztar + python setup.py sdist --formats=zip bdist_wheel # --formats=gztar twine upload dist/* """ with open(os.path.join(os.getcwd(), 'README.rst'), 'r', encoding='utf-8') as fh: @@ -27,8 +27,8 @@ name='telegram-bot-unittest', version=ver, description='test your python-telegram-bot easily', - long_description=long_description, long_description_content_type='text/x-rst', + long_description=long_description, author='Dontsov E.', author_email='dontsovcmc@gmail.com', url='https://github.com/dontsovcmc/telegram_bot_unittest',