forked from automagica/automagica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.48 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.48 KB
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
#!/usr/bin/env python
import sys
import setuptools
from distutils.core import setup
setup(
name="Automagica",
version="2.0.7",
description="Bot for Automagica",
author="Oakwood Technologies BVBA",
author_email="mail@oakwood.ai",
url="https://automagica.com/",
entry_points={"console_scripts": ["automagica=automagica.cli:main"]},
packages=["automagica"],
package_data={
"automagica": [
"bin/win32/chromedriver.exe",
"bin/mac64/chromedriver",
"bin/linux64/chromedriver",
"lab/.jupyter/custom/automagica-lab.png",
"lab/.jupyter/custom/custom.css",
"lab/.jupyter/custom/custom.js",
"lab/.jupyter/custom/favicon.png",
"lab/.jupyter/custom/logo.png",
"lab/.jupyter/custom/logo-white.png",
"icon.ico"
]
},
install_requires=[
"requests==2.22.0",
"plyer==1.4.0",
"Pillow==7.0.0",
"PyAutoGUI==0.9.36",
"selenium==3.7.0",
"openpyxl==2.4.8",
"python-docx==0.8.6",
"PyPDF2==1.26.0",
"faker==2.0.3",
"psutil==5.4.6",
"PySimpleGUI==4.15.1",
"keyring==21.0.0",
"cryptography==2.3.1",
"python-docx==0.8.6",
"pyttsx3==2.71",
"pyad==0.6.0",
"jupyterlab==1.2.4",
"py-trello==0.13.0",
]
+ (["pywinauto==0.6.5", "pywin32==227"] if sys.platform.startswith("win") else []),
include_package_data=True,
)