mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
51 lines
1.0 KiB
TOML
51 lines
1.0 KiB
TOML
[tool.poetry]
|
|
name = "opendevin"
|
|
version = "0.1.0"
|
|
description = "OpenDevin: Code Less, Make More"
|
|
authors = ["OpenDevin"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/OpenDevin/OpenDevin"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
datasets = "*"
|
|
pandas = "*"
|
|
litellm = "*"
|
|
termcolor = "*"
|
|
torch = {version = "*", source = "pytorch"}
|
|
seaborn = "*"
|
|
docker = "*"
|
|
fastapi = "*"
|
|
toml = "*"
|
|
uvicorn = "*"
|
|
types-toml = "*"
|
|
numpy = "*"
|
|
json-repair = "*"
|
|
playwright = "*"
|
|
|
|
[tool.poetry.group.llama-index.dependencies]
|
|
llama-index = "*"
|
|
llama-index-vector-stores-chroma = "*"
|
|
chromadb = "*"
|
|
llama-index-embeddings-huggingface = "*"
|
|
llama-index-embeddings-azure-openai = "*"
|
|
llama-index-embeddings-ollama = "*"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "*"
|
|
mypy = "*"
|
|
pre-commit = "*"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "*"
|
|
|
|
[[tool.poetry.source]]
|
|
name = "pytorch"
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
priority = "supplemental"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|