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']