pyTelegramBotAPI/setup.py

32 lines
978 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 read(filename):
with open(filename, encoding='utf-8') as file:
return file.read()
2015-06-26 17:44:15 +03:00
setup(name='pyTelegramBotAPI',
2020-07-05 19:37:17 +03:00
version='3.7.2',
2015-06-26 17:44:15 +03:00
description='Python Telegram bot api. ',
long_description=read('README.md'),
long_description_content_type="text/markdown",
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'],
2016-09-12 11:38:54 +03:00
extras_require={
'json': 'ujson',
'redis': 'redis>=3.4.1'
2016-09-12 11:38:54 +03:00
},
2015-06-26 18:10:46 +03:00
classifiers=[
'Development Status :: 5 - Production/Stable',
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)',
]
)