| [tool.poetry] |
| name = "gpt-engineer" |
| version = "0.2.6" |
| description = "Specify what you want it to build, the AI asks for clarification, and then builds it." |
| authors = ["Anton Osika <anton.osika@gmail.com>"] |
| license = "MIT" |
| readme = "README.md" |
| homepage = "https://github.com/gpt-engineer-org/gpt-engineer" |
| repository = "https://github.com/gpt-engineer-org/gpt-engineer" |
| documentation = "https://gpt-engineer.readthedocs.io/en/latest/" |
| classifiers = [ |
| "Development Status :: 4 - Beta", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| ] |
|
|
| [build-system] |
| requires = ["poetry-core>=1.0.0"] |
| build-backend = "poetry.core.masonry.api" |
|
|
| [tool.poetry.dependencies] |
| python = ">=3.10,<3.12" |
| openai = "^1.0" |
| termcolor = "2.3.0" |
| typer = ">=0.3.2" |
| rudder-sdk-python = ">=2.0.2" |
| dataclasses-json = "0.5.7" |
| tiktoken = ">=0.0.4" |
| tabulate = "0.9.0" |
| python-dotenv = ">=0.21.0" |
| langchain = "^0.1" |
| langchain_openai = "*" |
| toml = ">=0.10.2" |
|
|
| [tool.poetry.group.dev.dependencies] |
| pytest = ">=7.3.1" |
| pytest-cov = "^4.1.0" |
| black = "23.3.0" |
| mypy = "1.3.0" |
| ruff = ">=0.0.272" |
| pre-commit = "3.3.3" |
| tox = ">=3.0.0" |
|
|
| |
| autodoc_pydantic = ">=1.8.0" |
| myst_parser = ">=0.18.1" |
| nbsphinx = ">=0.8.9" |
| sphinx = ">=4.5.0" |
| sphinx-autobuild = ">=2021.3.14" |
| sphinx_book_theme = ">=0.3.3" |
| sphinx_rtd_theme = ">=1.0.0" |
| sphinx-typlog-theme = ">=0.8.0" |
| sphinx-panels = ">=0.6.0" |
| toml = ">=0.10.2" |
| myst-nb = ">=0.17.1" |
| linkchecker = ">=10.2.1" |
| sphinx-copybutton = ">=0.5.1" |
| markdown-include = ">=0.6.0" |
| sphinx_copybutton = ">=0.5.2" |
|
|
| [tool.poetry.group.experimental] |
| optional = true |
|
|
| [tool.poetry.group.experimental.dependencies] |
| llama-index = ">=0.8" |
| rank-bm25 = ">=0.2.2" |
| tree_sitter_languages = ">=1.8.0" |
|
|
| [tool.poetry.scripts] |
| gpt-engineer = 'gpt_engineer.applications.cli.main:app' |
| ge = 'gpt_engineer.applications.cli.main:app' |
| gpte = 'gpt_engineer.applications.cli.main:app' |
| bench = 'gpt_engineer.benchmark.__main__:main' |
| gpte_test_application = 'tests.caching_main:app' |
|
|
| [tool.poetry.extras] |
| test = ["pytest", "pytest-cov"] |
| doc = ["autodoc_pydantic", "myst_parser", "nbsphinx", "sphinx", "sphinx-autobuild", "sphinx_book_theme", "sphinx_rtd_theme", "sphinx-typlog-theme", "sphinx-panels", "myst-nb", "linkchecker", "sphinx-copybutton", "markdown-include", "sphinx_copybutton"] |
| experimental = ["llama-index", "rank-bm25", "tree_sitter_languages"] |
|
|
| [tool.ruff] |
| select = ["F", "E", "W", "I001"] |
| show-fixes = false |
| target-version = "py310" |
| task-tags = ["TODO", "FIXME"] |
| extend-ignore = ["E501", "E722"] |
|
|
| [tool.black] |
| target-version = ["py310"] |
|
|
| [tool.ruff.isort] |
| known-first-party = [] |
| known-third-party = [] |
| section-order = [ |
| "future", |
| "standard-library", |
| "third-party", |
| "first-party", |
| "local-folder", |
| ] |
| combine-as-imports = true |
| split-on-trailing-comma = false |
| lines-between-types = 1 |
|
|