1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00
pyTelegramBotAPI/setup.py
eternnoir 8f13b636ed Update version.
Change log:
- new method: register_for_reply
- Added a warning to send_message to not exceed 5000 characters per message.
2015-07-30 09:06:41 +08:00

24 lines
802 B
Python

#!/usr/bin/env python
from setuptools import setup
setup(name='pyTelegramBotAPI',
version='0.2.8',
description='Python Telegram bot api. ',
author='eternnoir',
author_email='eternnoir@gmail.com',
url='https://github.com/eternnoir/pyTelegramBotAPI',
packages=['telebot'],
license='GPL2',
keywords='tools',
install_requires=['pytest', 'requests', 'six'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
]
)