forked from automagica/automagica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.17 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
#!/usr/bin/env python
import sys
import setuptools
from distutils.core import setup
setup(name='Automagica',
version='1.0.9',
description='Robot for Automagica - Smart Robotic Process Automation',
author='Oakwood Technologies BVBA',
author_email='[email protected]',
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
)