| [tool.poetry]
|
| name = "openhands-ai"
|
| version = "0.20.0"
|
| description = "OpenHands: Code Less, Make More"
|
| authors = ["OpenHands"]
|
| license = "MIT"
|
| readme = "README.md"
|
| repository = "https://github.com/All-Hands-AI/OpenHands"
|
| packages = [
|
| { include = "openhands/**/*" }
|
| ]
|
|
|
| [tool.poetry.dependencies]
|
| python = "^3.12"
|
| datasets = "*"
|
| pandas = "*"
|
| litellm = "^1.55.4"
|
| google-generativeai = "*"
|
| google-api-python-client = "*"
|
| google-auth-httplib2 = "*"
|
| google-auth-oauthlib = "*"
|
| termcolor = "*"
|
| seaborn = "*"
|
| docker = "*"
|
| fastapi = "*"
|
| toml = "*"
|
| uvicorn = "*"
|
| types-toml = "*"
|
| numpy = "*"
|
| json-repair = "*"
|
| browsergym-core = "0.10.2"
|
| html2text = "*"
|
| e2b = ">=1.0.5,<1.1.0"
|
| pexpect = "*"
|
| jinja2 = "^3.1.3"
|
| python-multipart = "*"
|
| boto3 = "*"
|
| minio = "^7.2.8"
|
| gevent = "^24.2.1"
|
| pyarrow = "19.0.0"
|
| tenacity = ">=8.5,<10.0"
|
| zope-interface = "7.2"
|
| pathspec = "^0.12.1"
|
| google-cloud-aiplatform = "*"
|
| anthropic = {extras = ["vertex"], version = "*"}
|
| grep-ast = "0.3.3"
|
| tree-sitter = "0.21.3"
|
| bashlex = "^0.18"
|
| pyjwt = "^2.9.0"
|
| dirhash = "*"
|
| python-frontmatter = "^1.1.0"
|
| python-docx = "*"
|
| PyPDF2 = "*"
|
| python-pptx = "*"
|
| pylatexenc = "*"
|
| tornado = "*"
|
| python-dotenv = "*"
|
| pylcs = "^0.1.1"
|
| whatthepatch = "^1.0.6"
|
| protobuf = "^4.21.6,<5.0.0"
|
| opentelemetry-api = "1.25.0"
|
| opentelemetry-exporter-otlp-proto-grpc = "1.25.0"
|
| modal = ">=0.66.26,<0.73.0"
|
| runloop-api-client = "0.13.0"
|
| libtmux = ">=0.37,<0.40"
|
| pygithub = "^2.5.0"
|
| joblib = "*"
|
| openhands-aci = "0.1.8"
|
| python-socketio = "^5.11.4"
|
| redis = "^5.2.0"
|
| sse-starlette = "^2.1.3"
|
|
|
| [tool.poetry.group.llama-index.dependencies]
|
| llama-index = "*"
|
| llama-index-vector-stores-chroma = "*"
|
| chromadb = "*"
|
| llama-index-embeddings-huggingface = "*"
|
| torch = "2.5.1"
|
| llama-index-embeddings-azure-openai = "*"
|
| llama-index-embeddings-ollama = "*"
|
| voyageai = "*"
|
| llama-index-embeddings-voyageai = "*"
|
|
|
| [tool.poetry.group.dev.dependencies]
|
| ruff = "0.9.2"
|
| mypy = "1.14.1"
|
| pre-commit = "4.0.1"
|
| build = "*"
|
|
|
| [tool.poetry.group.test.dependencies]
|
| pytest = "*"
|
| pytest-cov = "*"
|
| pytest-asyncio = "*"
|
| pytest-forked = "*"
|
| pytest-xdist = "*"
|
| flake8 = "*"
|
| openai = "*"
|
| pandas = "*"
|
| reportlab = "*"
|
|
|
| [tool.coverage.run]
|
| concurrency = ["gevent"]
|
|
|
|
|
| [tool.poetry.group.runtime.dependencies]
|
| jupyterlab = "*"
|
| notebook = "*"
|
| jupyter_kernel_gateway = "*"
|
| flake8 = "*"
|
|
|
| [build-system]
|
| build-backend = "poetry.core.masonry.api"
|
| requires = [
|
| "poetry-core",
|
| ]
|
|
|
| [tool.autopep8]
|
|
|
| ignore = [ "E501" ]
|
|
|
| [tool.black]
|
|
|
| skip-string-normalization = true
|
|
|
| [tool.ruff.lint]
|
| select = ["D"]
|
|
|
| ignore = ["D1"]
|
|
|
| [tool.ruff.lint.pydocstyle]
|
| convention = "google"
|
|
|
|
|
| [tool.poetry.group.evaluation.dependencies]
|
| streamlit = "*"
|
| whatthepatch = "*"
|
| retry = "*"
|
| evaluate = "*"
|
| swebench = { git = "https://github.com/All-Hands-AI/SWE-bench.git" }
|
| commit0 = "*"
|
| func_timeout = "*"
|
| sympy = "*"
|
| gdown = "*"
|
| matplotlib = "*"
|
| seaborn = "*"
|
| tabulate = "*"
|
| browsergym-webarena = "0.10.2"
|
| browsergym-miniwob = "0.10.2"
|
|
|
| [tool.poetry-dynamic-versioning]
|
| enable = true
|
| style = "semver"
|
|
|
| [tool.poetry.scripts]
|
| openhands = "openhands.core.cli:main"
|
|
|