pyTelegramBotAPI/setup.py

23 lines
747 B
Python
Raw Normal View History

2015-06-26 17:44:15 +03:00
#!/usr/bin/env python
from setuptools import setup
setup(name='pyTelegramBotAPI',
version='0.1.9',
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=[
'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)',
]
)