pantry/projects/agpt.co/package.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2023-05-08 16:39:44 +03:00
distributable:
url: https://github.com/Significant-Gravitas/Auto-GPT/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
display-name: Auto-GPT
2023-05-08 16:39:44 +03:00
versions:
github: Significant-Gravitas/Auto-GPT
platforms:
- darwin
2023-07-30 15:00:35 +03:00
entrypoint: tea ./entrypoint.sh
2023-05-08 16:39:44 +03:00
dependencies:
python.org: ^3.10
redis.io: ^7
2023-07-30 15:00:35 +03:00
tea.xyz: ^0
2023-05-08 16:39:44 +03:00
build:
script:
2023-05-09 00:38:04 +03:00
# `pip install` seems to miss some vital .json files, so we must manually copy
# we copy everything as we're not 100% sure which files are missing
# we do this first so any file movements from `pip install` takes precedence
- run: cp -R $SRCROOT/autogpt .
working-directory: ${{prefix}}/venv/lib/python{{deps.python.org.version.marketing}}/site-packages
2023-05-09 00:38:04 +03:00
2023-05-08 16:39:44 +03:00
- python-venv.py {{prefix}}/bin/auto-gpt --requirements-txt
2023-05-08 16:39:44 +03:00
# still pretty new and thus provides no executable, so we made one
- cp props/auto-gpt {{prefix}}/venv/bin
- working-directory: '{{prefix}}/share'
run: |
cp $SRCROOT/.env.template env.template
cp $SRCROOT/prompt_settings.yaml .
2023-07-30 15:00:35 +03:00
- cp props/entrypoint.sh {{prefix}}
2023-05-08 16:39:44 +03:00
provides:
- bin/auto-gpt
test:
qa-required: true
script: auto-gpt --help