efb-qq-plugin-go-cqhttp/setup.py

47 lines
1.6 KiB
Python
Raw Normal View History

2021-02-15 15:32:47 +00:00
import sys
2021-05-30 17:40:01 +00:00
2021-02-15 15:32:47 +00:00
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
raise Exception("Python 3.6 or higher is required. Your version is %s." % sys.version)
__version__ = ""
2021-05-30 17:16:50 +00:00
exec(open('efb_qq_plugin_go_cqhttp/__version__.py').read())
2021-02-15 15:32:47 +00:00
long_description = open('README.rst').read()
setup(
2021-05-30 17:16:50 +00:00
name='efb-qq-plugin-go-cqhttp',
2021-02-15 15:32:47 +00:00
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
version=__version__,
2021-05-30 17:16:50 +00:00
description='EQS plugin for Go-CQHttp API Compatible Client.',
2021-02-15 15:32:47 +00:00
long_description=long_description,
include_package_data=True,
2021-05-30 17:16:50 +00:00
author='XYenon',
author_email='i@xyenon.bid',
url='https://github.com/XYenon/efb-qq-plugin-go-cqhttp',
2021-02-15 15:32:47 +00:00
license='GPLv3',
python_requires='>=3.6',
keywords=['ehforwarderbot', 'EH Forwarder Bot', 'EH Forwarder Bot Slave Channel',
2021-05-30 17:16:50 +00:00
'qq', 'chatbot', 'EQS', 'CoolQ', 'go-cqhttp'],
2021-02-15 15:32:47 +00:00
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
],
install_requires=[
"efb-qq-slave", "ehforwarderbot",
"PyYaml",
'requests', 'python-magic', 'Pillow', 'cqhttp>=1.3.0', 'cherrypy>=18.5.0'
],
entry_points={
2021-05-30 17:40:01 +00:00
'ehforwarderbot.qq.plugin': 'GoCQHttp = efb_qq_plugin_go_cqhttp:CoolQ'
2021-02-15 15:32:47 +00:00
}
2021-05-30 17:26:42 +00:00
)