From 472a8c42309dc9ee85f1192a2b2f6e6b4bd1e6ca Mon Sep 17 00:00:00 2001 From: BaimoQilin Date: Fri, 14 Jun 2024 18:24:05 +0800 Subject: [PATCH] fix: Fix dependency missing problem --- requirements.txt | 3 ++- setup.py | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6e42ce1..8b3bc42 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ openai>=1.13.3 -pyyaml \ No newline at end of file +pyyaml +cx_Freeze \ No newline at end of file diff --git a/setup.py b/setup.py index 9bb622d..7b033eb 100644 --- a/setup.py +++ b/setup.py @@ -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": {