This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
51 lines (46 loc) · 1.46 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
from setuptools import setup, find_packages
import pathlib
import re
WORK_DIR = pathlib.Path(__file__).parent
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
__version__ = ""
exec(open('efb_wechat_cutecat_slave/__version__.py').read())
setup(
name="efb-wechat-cutecat-slave",
version=__version__,
description='EFB Slave for WeChat on CuteCat iHttp plugin',
author='honus',
author_email="[email protected]",
url="https://github.com/0honus0/efb-wechat-cutecat-slave",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires='>=3.7',
keywords=["wechat", ],
install_requires=[
"python-CuteCat-iHttp",
"ehforwarderbot",
"PyYaml>=5.3",
"cachetools",
"requests",
"python-magic",
"lxml",
"emoji==1.7.0",
"pilk",
"pydub",
"lottie",
"cairosvg",
],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: User Interfaces',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
"Operating System :: OS Independent"
],
entry_points={
'ehforwarderbot.slave': 'honus.CuteCatiHttp = efb_wechat_cutecat_slave:CuteCatChannel',
}
)