Update some pip info.

This commit is contained in:
eternnoir 2015-06-26 23:10:46 +08:00
parent 1c4c75ee8f
commit e99b4f6e64
1 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,7 @@
from setuptools import setup
setup(name='pyTelegramBotAPI',
version='0.1',
version='0.1.2',
description='Python Telegram bot api. ',
author='eternnoir',
author_email='eternnoir@gmail.com',
@ -10,5 +10,13 @@ setup(name='pyTelegramBotAPI',
packages=['telebot'],
license='GPL2',
keywords='tools',
install_requires=['pytest','requests']
)
install_requires=['pytest', 'requests'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
]
)