-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from cx_Freeze import setup, Executable
build_options={
"optimize": 2,
"include_files": ["images"],
"includes": ["pynput.keyboard._xorg", "pynput.mouse._xorg"],
"packages": ["Xlib"]
}
setup(
name="AutoPresser",
version="1.7.2",
description="Auto presser and clicker in one app",
author="FDroider",
keywords=["Clicker", "Presser", "AutoPresser", "AutoClicker"],
options={"build_exe": build_options,
"bdist_appimage": {},
"bdist_rpm": {"vendor": "FDroider",
"provides": "Auto-cliker/presser mouse button or keyboard button"}},
executables=[{"script": "main.py", "base": "gui", "target_name": "AutoPresser", "icon": "autopresser_icon.svg"}]
)