1 Star 0 Fork 0

frh16/Python-UIAutomation-for-Windows

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
yinkaisheng 提交于 6年前 . add RightDragDrop
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from uiautomation import VERSION, AUTHOR_MAIL
setup(
name='uiautomation',
version=VERSION,
description='Python UIAutomation for Windows',
license='Apache 2.0',
author='yinkaisheng',
author_email=AUTHOR_MAIL,
keywords="windows ui automation uiautomation inspect",
url='https://github.com/yinkaisheng/Python-UIAutomation-for-Windows',
platforms='Windows Only',
packages=find_packages(),
include_package_data=True,
scripts=["scripts/automation.py", 'scripts/automation.py'],
long_description='Python UIAutomation for Windows. Supports Python3.4+, x86, x64',
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=[
'typing',
'comtypes>=1.1.7',
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/frh16/Python-UIAutomation-for-Windows.git
git@gitee.com:frh16/Python-UIAutomation-for-Windows.git
frh16
Python-UIAutomation-for-Windows
Python-UIAutomation-for-Windows
master

搜索帮助