From 1c4c75ee8f261dbd13c1720a1c35ec3f48bdfc0f Mon Sep 17 00:00:00 2001 From: eternnoir Date: Fri, 26 Jun 2015 22:52:09 +0800 Subject: [PATCH] Add some readme. --- README.md | 16 ++++++++++++++++ setup.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c972c7..dae46a2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,22 @@ # pyTelegramBotAPI Python Telegram bot api. +## How to install + +* Install from source + +``` +$ git clone https://github.com/eternnoir/pyTelegramBotAPI.git +$ cd pyTelegramBotAPI +$ python setup.py install +``` + +* Install by pip + +``` +$ pip install pyTelegramBotAPI +``` + ## Example * Send Message diff --git a/setup.py b/setup.py index 59f5963..3cb42da 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='pyTelegramBotAPI', author='eternnoir', author_email='eternnoir@gmail.com', url='https://github.com/eternnoir/pyTelegramBotAPI', - packages=['VSTools'], + packages=['telebot'], license='GPL2', keywords='tools', install_requires=['pytest','requests']