forked from CyniaAI/BuilderGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 778 Bytes
/
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
from cx_Freeze import setup, Executable
import config
files = [
#"browser.py",
#"config.py",
"config.yaml",
#"console.py",
#"core.py",
"LICENSE",
#"log_writer.py",
"logo.png",
"README.md",
"requirements.txt",
"generated",
"logs",
"temp"
]
setup(name='BuilderGPT',
version=config.VERSION_NUMBER,
maintainer="CubeGPT Team",
maintainer_email="admin@cubegpt.org",
url="https://github.com/CubeGPT/BuilderGPT",
license="Apache License 2.0",
description='An open source, free, AI-powered Minecraft structure generator developed by CubeGPT.',
executables=[Executable('ui.py', base="gui")],
options={
"build_exe": {
"include_files": files,
}
})