Skip to content

Commit da9fbb1

Browse files
authored
Merge pull request #4 from Zhou-Shilin/fix-exe-builds
Fix dependency missing problem
2 parents 5a39be5 + 472a8c4 commit da9fbb1

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
openai>=1.13.3
2-
pyyaml
2+
pyyaml
3+
cx_Freeze

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@
33
import config
44

55
files = [
6+
"logs",
7+
"codes",
68
"config.yaml",
79
"LICENSE",
810
"README.md",
911
"requirements.txt",
10-
"logs"
11-
# More files can be added here
12+
"banner.jpeg"
1213
]
1314

14-
setup(name='CubeAgents', # Change this to the name of your app
15+
setup(name='BukkitGPT-v3',
1516
version=config.VERSION_NUMBER,
1617
maintainer="CubeGPT Team",
1718
maintainer_email="admin@cubegpt.org",
18-
url="https://github.com/CubeGPT/CubeAgents",
19+
url="https://github.com/CubeGPT/BukkitGPT-v3",
1920
license="Apache License 2.0",
20-
description='A app-template for CubeGPT projects.',
21+
description='An open source, free, AI-powered Minecraft Bukkit plugin generator',
2122
executables=[Executable('ui.py', base="gui")],
2223
options={
2324
"build_exe": {

0 commit comments

Comments
 (0)