diff --git a/setup.py b/setup.py index 8606778..d697f5b 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,14 @@ #!/usr/bin/env python from setuptools import setup +def readme(): + with open('README.rst') as f: + return f.read() + setup(name='pyTelegramBotAPI', - version='0.3.1', + version='0.3.2', description='Python Telegram bot api. ', + long_description=readme(), author='eternnoir', author_email='eternnoir@gmail.com', url='https://github.com/eternnoir/pyTelegramBotAPI',