mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* create the pyproject file * Fix the pyproject.toml file * Update Makefile * adapt makefile * fix some execution issues * Untrack lock files and wait for the backend to get start before frontend * Remove LangChain dependencies * Add github action for pytest * add missing dependency * rebase and fix the versions adding lock file * add torch and pymupdfb deps * some conflicts fixes * Add dependencies evaluation group * add poetry.lock * Fix unexpected operator --------- Co-authored-by: Robert Brennan <contact@rbren.io>
49 lines
970 B
TOML
49 lines
970 B
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 = "*"
|
|
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 = "*"
|
|
pymupdfb = "*"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "*"
|
|
mypy = "*"
|
|
pre-commit = "*"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "*"
|
|
|
|
[tool.poetry.group.evaluation.dependencies]
|
|
torch = "*"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|