mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-06 22:03:59 -05:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
22 lines
517 B
TOML
22 lines
517 B
TOML
[tool.poetry]
|
|
name = "autogpt-libs"
|
|
version = "0.2.0"
|
|
description = "Shared libraries across NextGen AutoGPT"
|
|
authors = ["Aarushi <aarushik93@gmail.com>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "autogpt_libs" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
colorama = "^0.4.6"
|
|
google-cloud-logging = "^3.8.0"
|
|
pydantic = "^2.8.2"
|
|
pydantic-settings = "^2.5.2"
|
|
pyjwt = "^2.8.0"
|
|
python = ">=3.10,<4.0"
|
|
python-dotenv = "^1.0.1"
|
|
supabase = "^2.7.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|