gpt-computer-agent / gca_setup_generator.py
khulnasoft's picture
Upload 76 files
873d0cf verified
raw
history blame
344 Bytes
# Read the contents of setup.py
with open("setup.py", "r") as file:
setup_content = file.read()
# Replace the project name
setup_content = setup_content.replace(
"""name="gpt_computer_agent",""", """name="gcadev","""
)
# Write the modified content to gca_setup.py
with open("gca_setup.py", "w") as file:
file.write(setup_content)