Spaces:
Build error
Build error
File size: 344 Bytes
873d0cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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)
|