mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
Build PyPi package
This commit is contained in:
parent
399a39631b
commit
a2c58b17d5
3 changed files with 9 additions and 5 deletions
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
|||
2015-07-08
|
||||
|
||||
Released 1.1
|
||||
PyPi package now available
|
||||
|
||||
|
||||
2015-07-08
|
||||
|
||||
Released 1.0
|
||||
|
|
6
setup.py
6
setup.py
|
@ -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=[
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue