2015-06-26 17:44:15 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(name='pyTelegramBotAPI',
|
2015-07-03 05:32:13 +03:00
|
|
|
version='0.2.0',
|
2015-06-26 17:44:15 +03:00
|
|
|
description='Python Telegram bot api. ',
|
|
|
|
author='eternnoir',
|
|
|
|
author_email='eternnoir@gmail.com',
|
|
|
|
url='https://github.com/eternnoir/pyTelegramBotAPI',
|
2015-06-26 17:52:09 +03:00
|
|
|
packages=['telebot'],
|
2015-06-26 17:44:15 +03:00
|
|
|
license='GPL2',
|
|
|
|
keywords='tools',
|
2015-06-26 18:10:46 +03:00
|
|
|
install_requires=['pytest', 'requests'],
|
|
|
|
classifiers=[
|
2015-07-03 05:32:13 +03:00
|
|
|
'Development Status :: 4 - Beta',
|
2015-06-26 18:10:46 +03:00
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2015-07-02 06:51:50 +03:00
|
|
|
'Programming Language :: Python :: 3',
|
2015-06-26 18:10:46 +03:00
|
|
|
'Environment :: Console',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
|
|
|
|
]
|
|
|
|
)
|