forked from Hello-Mr-Crab/pywechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (25 loc) · 908 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (25 loc) · 908 Bytes
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
import sys
from setuptools import setup
setup(name='pywechat127',
version='1.9.9',
author='Hello-Mr-Crab',
author_email='3083256475@qq.com',
classifiers=[
"Operating System :: Microsoft :: Windows",
],
platforms=["Windows"],
description=f'A Powerful Windows-PC-Wechat automation Tool',
long_description=open('README.md','r',encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/Hello-Mr-Crab/pywechat',
#64位操作系统都安装,32位操作系统只安装pywechat
packages=['pywechat','pyweixin'] if sys.maxsize==2**63-1 else ['pywechat'],
license='LGPL',
keywords=['rpa','windows','wechat','automation'],
install_requires=[
'emoji>=2.14.1','PyAutoGUI>=0.9.54','pycaw>=20240210','pywin32>=308','pywin32-ctypes>=0.2.2','pywinauto>=0.6.8','psutil>=5.9.5','pillow>=10.4.0']
)
'''
Author:Hello-Mr-Crab
Contributor:Viper,Chanpoe,mrhan1993,nmhjklnm,clen1,guanjt3
'''