Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Fixed setup.py requires option (changed to install_requires)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashgorokhov committed May 13, 2016
1 parent 1b1b7b6 commit 1a875b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

1.1.2 (2016-05-13)
++++++++++++++++++

* Fixed setup.py requires option (changed to install_requires)

1.1.1 (2016-04-20)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
long_description = readme.read() + '\n\n' + history.read()

setup(
requires=['requests'],
install_requires=['requests'],
name='python-telegram-handler',
version='1.1.1',
version='1.1.2',
packages=['telegram_handler'],
url='https://github.com/sashgorokhov/python-telegram-handler',
download_url='https://github.com/sashgorokhov/python-telegram-handler/archive/master.zip',
Expand Down
2 changes: 1 addition & 1 deletion telegram_handler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def main():
import argparse, requests

parser = argparse.ArgumentParser('Telegram Loggin Handler', description='Helps to retrieve chat_id')
parser = argparse.ArgumentParser('Telegram Logging Handler', description='Helps to retrieve chat_id')
parser.add_argument('token')

args = parser.parse_args()
Expand Down

0 comments on commit 1a875b0

Please sign in to comment.