mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 16:46:35 +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
|
2015-07-08
|
||||||
|
|
||||||
Released 1.0
|
Released 1.0
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -15,16 +15,14 @@ def read(*paths):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='python-telegram-bot',
|
name='python-telegram-bot',
|
||||||
version='1.0',
|
version='1.1',
|
||||||
author='Leandro Toledo',
|
author='Leandro Toledo',
|
||||||
author_email='leandrotoledodesouza@gmail.com',
|
author_email='leandrotoledodesouza@gmail.com',
|
||||||
license='GPLv2',
|
license='GPLv2',
|
||||||
url='https://github.com/leandrotoledo/python-telegram-bot',
|
url='https://github.com/leandrotoledo/python-telegram-bot',
|
||||||
keywords='telegram bot api',
|
keywords='telegram bot api',
|
||||||
description='A Python wrapper around the Telegram Bot API',
|
description='A Python wrapper around the Telegram Bot API',
|
||||||
long_description=(read('README.rst') + '\n\n' +
|
long_description=(read('README.rst')),
|
||||||
read('AUTHORS.rst') + '\n\n' +
|
|
||||||
read('CHANGES')),
|
|
||||||
packages=find_packages(exclude=['tests*']),
|
packages=find_packages(exclude=['tests*']),
|
||||||
install_requires=['requests'],
|
install_requires=['requests'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"""A library that provides a Python interface to the Telegram Bots API"""
|
"""A library that provides a Python interface to the Telegram Bots API"""
|
||||||
|
|
||||||
__author__ = 'leandrotoledodesouza@gmail.com'
|
__author__ = 'leandrotoledodesouza@gmail.com'
|
||||||
__version__ = '1.0'
|
__version__ = '1.1'
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue