1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Update version.

Change log:
- bug fix #61
- Better error description
This commit is contained in:
eternnoir 2015-08-21 23:58:55 +08:00
parent 645270861c
commit 2a103e5bbc

View File

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