pyTelegramBotAPI/setup.py

30 lines
966 B
Python
Raw Normal View History

2015-06-26 17:44:15 +03:00
#!/usr/bin/env python
from setuptools import setup
2016-04-22 20:24:50 +03:00
from io import open
2015-06-26 17:44:15 +03:00
def readme():
2016-04-22 20:24:50 +03:00
with open('README.rst', encoding='utf-8') as f:
return f.read()
2015-06-26 17:44:15 +03:00
setup(name='pyTelegramBotAPI',
version='2.1.6',
2015-06-26 17:44:15 +03:00
description='Python Telegram bot api. ',
long_description=readme(),
2015-06-26 17:44:15 +03:00
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='telegram bot api tools',
2016-04-09 05:37:34 +03:00
install_requires=['requests', 'six'],
2015-06-26 18:10:46 +03:00
classifiers=[
'Development Status :: 5 - Production/Stable',
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)',
]
)