1 Star 1 Fork 1

尹正-Excelsior-Lucas/Automagica

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
import sys
import setuptools
from distutils.core import setup
setup(name='Automagica',
version='1.0.10',
description='Robot for Automagica - Smart Robotic Process Automation',
author='Oakwood Technologies BVBA',
author_email='mail@oakwood.ai',
url='https://automagica.io/',
entry_points={
'console_scripts': ['automagica=automagica.cli:main'],
},
packages=['automagica'],
package_data={'automagica': [
'bin/win32/chromedriver.exe',
'bin/mac64/chromedriver',
'bin/linux64/chromedriver']},
install_requires=[
'plyer==1.4.0',
'python-socketio==4.3.0',
'PyAutoGUI==0.9.36',
'opencv-python==3.4.2.17',
'selenium==3.7.0',
'pytesseract==0.2.0',
'openpyxl==2.4.8',
'python-docx==0.8.6',
'PyPDF2==1.26.0',
'psutil==5.4.6',
'beautifulsoup4==4.6.0',
'websocket-client==0.56.0',
'py-trello==0.13.0'] + (
['pywinauto==0.6.5', 'pywin32==223'] if sys.platform.startswith('win') else [
]
),
include_package_data=True
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lucas_YIN/Automagica.git
git@gitee.com:lucas_YIN/Automagica.git
lucas_YIN
Automagica
Automagica
master

搜索帮助