From 13aeb2cf3355bda0b7c822e8313922517681f9f5 Mon Sep 17 00:00:00 2001 From: BillSchumacher <34168009+BillSchumacher@users.noreply.github.com> Date: Thu, 20 Apr 2023 21:33:32 -0500 Subject: [PATCH 1/2] update pyproject --- pyproject.toml | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fdb43d66e4c1..b9adc4091e4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,25 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + [project] -name = "auto-gpt" -version = "0.1.0" -description = "A GPT based ai agent" +name = "agpt" +version = "0.2.2" +authors = [ + { name="Torantulino", email="support@agpt.co" }, +] readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] +description = "An open-source attempt to make GPT-4 autonomous" + +[project.urls] +"Homepage" = "https://github.com/Significant-Gravitas/Auto-GPT" +"Bug Tracker" = "https://github.com/Significant-Gravitas/Auto-GPT" [tool.black] line-length = 88 From 443d26dfdb52c9bf22ca77ce2424b3e118e0438e Mon Sep 17 00:00:00 2001 From: Richard Beales Date: Sat, 22 Apr 2023 19:57:47 +0100 Subject: [PATCH 2/2] python bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b9adc4091e4a..64926046683a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ { name="Torantulino", email="support@agpt.co" }, ] readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",