Skip to content

Commit

Permalink
Merge pull request #4 from Zhou-Shilin/fix-exe-builds
Browse files Browse the repository at this point in the history
Fix dependency missing problem
  • Loading branch information
Zhou-Shilin authored Jun 15, 2024
2 parents 5a39be5 + 472a8c4 commit da9fbb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
openai>=1.13.3
pyyaml
pyyaml
cx_Freeze
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,22 @@
import config

files = [
"logs",
"codes",
"config.yaml",
"LICENSE",
"README.md",
"requirements.txt",
"logs"
# More files can be added here
"banner.jpeg"
]

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

0 comments on commit da9fbb1

Please sign in to comment.