From 6e05db972a824fa551ba544aa2dd8b12bb6cb86b Mon Sep 17 00:00:00 2001 From: batyu Date: Sat, 15 Apr 2023 06:41:53 +0200 Subject: [PATCH] Allow local Development without pip install using "pip install -e ." --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 64ed7165..f420fcac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,4 +8,7 @@ readme = "README.md" line-length = 88 target-version = ['py310'] include = '\.pyi?$' -extend-exclude = "" \ No newline at end of file +extend-exclude = "" + +[tool.setuptools] +packages = ["autogpt"]