pyproject.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [tool.poetry]
  2. name = "opendevin"
  3. version = "0.1.0"
  4. description = "OpenDevin: Code Less, Make More"
  5. authors = ["OpenDevin"]
  6. license = "MIT"
  7. readme = "README.md"
  8. repository = "https://github.com/OpenDevin/OpenDevin"
  9. [tool.poetry.dependencies]
  10. python = "^3.11"
  11. datasets = "*"
  12. pandas = "*"
  13. litellm = "*"
  14. google-generativeai = "*" # To use litellm with Gemini Pro API
  15. termcolor = "*"
  16. seaborn = "*"
  17. docker = "*"
  18. fastapi = "*"
  19. toml = "*"
  20. uvicorn = "*"
  21. types-toml = "*"
  22. numpy = "*"
  23. json-repair = "*"
  24. playwright = "*"
  25. e2b = "^0.14.13"
  26. pexpect = "*"
  27. [tool.poetry.group.llama-index.dependencies]
  28. llama-index = "*"
  29. llama-index-vector-stores-chroma = "*"
  30. chromadb = "*"
  31. llama-index-embeddings-huggingface = "*"
  32. llama-index-embeddings-azure-openai = "*"
  33. llama-index-embeddings-ollama = "*"
  34. [tool.poetry.group.dev.dependencies]
  35. autopep8 = "v2.1.0"
  36. flake8 = "7.0.0"
  37. ruff = "0.3.7"
  38. mypy = "1.9.0"
  39. pre-commit = "3.7.0"
  40. [tool.poetry.group.test.dependencies]
  41. pytest = "*"
  42. [tool.poetry.group.evaluation.dependencies]
  43. torch = "*"
  44. [build-system]
  45. requires = ["poetry-core"]
  46. build-backend = "poetry.core.masonry.api"
  47. [tool.autopep8]
  48. # autopep8 fights with mypy on line length issue
  49. ignore = [ "E501" ]
  50. [tool.black]
  51. # prevent black (if installed) from changing single quotes to double quotes
  52. skip-string-normalization = true