CoolFace
Apppublic

coding-alt/AutoGPT

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
pyproject.toml41 linesDownload Raw Back to root
1[project]2name = "auto-gpt"3version = "0.1.0"4description = "A GPT based ai agent"5readme = "README.md"6 7[tool.black]8line-length = 889target-version = ['py310']10include = '\.pyi?$'11packages = ["autogpt"]12extend-exclude = '.+/(dist|.venv|venv|build)/.+'13 14 15[tool.isort]16profile = "black"17multi_line_output = 318include_trailing_comma = true19force_grid_wrap = 020use_parentheses = true21ensure_newline_before_comments = true22line_length = 8823sections = [24    "FUTURE",25    "STDLIB",26    "THIRDPARTY",27    "FIRSTPARTY",28    "LOCALFOLDER"29]30skip = '''31    .tox32    __pycache__33    *.pyc34    .env35    venv*/*36    .venv/*37    reports/*38    dist/*39 40'''41