pyproject.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. browsergym = "0.3.4" # integrate browsergym as the browsing interface
  25. html2text = "*"
  26. e2b = "^0.17.1"
  27. pexpect = "*"
  28. jinja2 = "^3.1.3"
  29. python-multipart = "*"
  30. boto3 = "*"
  31. minio = "^7.2.7"
  32. gevent = "^24.2.1"
  33. pyarrow = "16.1.0" # transitive dependency, pinned here to avoid conflicts
  34. tenacity = "^8.4.1"
  35. zope-interface = "6.4.post2"
  36. [tool.poetry.group.llama-index.dependencies]
  37. llama-index = "*"
  38. llama-index-vector-stores-chroma = "*"
  39. chromadb = "*"
  40. llama-index-embeddings-huggingface = "*"
  41. torch = "2.2.2"
  42. llama-index-embeddings-azure-openai = "*"
  43. llama-index-embeddings-ollama = "*"
  44. [tool.poetry.group.dev.dependencies]
  45. ruff = "0.4.10"
  46. mypy = "1.10.0"
  47. pre-commit = "3.7.1"
  48. [tool.poetry.group.test.dependencies]
  49. pytest = "*"
  50. pytest-cov = "*"
  51. pytest-asyncio = "*"
  52. pytest-forked = "*"
  53. flake8 = "*"
  54. openai = "*"
  55. python-docx = "*"
  56. PyPDF2 = "*"
  57. pylatexenc = "*"
  58. python-pptx = "*"
  59. opencv-python = "*"
  60. pandas = "*"
  61. reportlab = "*"
  62. [tool.coverage.run]
  63. concurrency = ["gevent"]
  64. [tool.poetry.group.evaluation.dependencies]
  65. streamlit = "*"
  66. whatthepatch = "*"
  67. retry = "*"
  68. evaluate = "*"
  69. swebench = { git = "https://github.com/OpenDevin/SWE-bench.git" }
  70. [build-system]
  71. build-backend = "poetry.core.masonry.api"
  72. requires = [
  73. "poetry-core",
  74. ]
  75. [tool.autopep8]
  76. # autopep8 fights with mypy on line length issue
  77. ignore = [ "E501" ]
  78. [tool.black]
  79. # prevent black (if installed) from changing single quotes to double quotes
  80. skip-string-normalization = true