-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 1.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import sys
from pathlib import Path
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__ = ""
exec(open("efb_parabox_master/__version__.py").read())
setup(
name='efb_parabox_master',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
version=__version__,
description='Parabox Master Channel for EH Forwarder Bot.',
readme="README.rst",
author='Ojhdt',
license='AGPLv3+',
include_package_data=True,
python_requires='>=3.6',
keywords=['ehforwarderbot', 'EH Forwarder Bot', 'EH Forwarder Bot Master Channel', 'Parabox'],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"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 :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
],
install_requires=[
"ehforwarderbot>=2.0.0",
"requests",
"pillow",
"peewee",
"retrying",
"bullet>=2.2.0",
"cjkwrap",
"typing-extensions>=3.7.4.1",
"websockets>=10.4",
"nest_asyncio",
"typing",
"cos-python-sdk-v5==1.9.22",
"qiniu>=7.9.0",
],
entry_points={
"ehforwarderbot.master": "ojhdt.parabox = efb_parabox_master:ParaboxChannel",
"ehforwarderbot.wizard": "ojhdt.parabox = efb_parabox_master.wizard:wizard"
}
)