Build PyPi package

This commit is contained in:
Leandro Toledo 2015-07-08 18:33:28 -03:00
parent 399a39631b
commit a2c58b17d5
3 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2015-07-08
Released 1.1
PyPi package now available
2015-07-08
Released 1.0

View file

@ -15,16 +15,14 @@ def read(*paths):
setup(
name='python-telegram-bot',
version='1.0',
version='1.1',
author='Leandro Toledo',
author_email='leandrotoledodesouza@gmail.com',
license='GPLv2',
url='https://github.com/leandrotoledo/python-telegram-bot',
keywords='telegram bot api',
description='A Python wrapper around the Telegram Bot API',
long_description=(read('README.rst') + '\n\n' +
read('AUTHORS.rst') + '\n\n' +
read('CHANGES')),
long_description=(read('README.rst')),
packages=find_packages(exclude=['tests*']),
install_requires=['requests'],
classifiers=[

View file

@ -4,7 +4,7 @@
"""A library that provides a Python interface to the Telegram Bots API"""
__author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '1.0'
__version__ = '1.1'
import json