pyproject.toml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. [tool.poetry]
  2. name = "opendevin"
  3. version = "0.8.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. include = ["poetry.lock"]
  10. [tool.poetry.dependencies]
  11. python = "^3.11"
  12. datasets = "*"
  13. pandas = "*"
  14. litellm = "*"
  15. google-generativeai = "*" # To use litellm with Gemini Pro API
  16. termcolor = "*"
  17. seaborn = "*"
  18. docker = "*"
  19. fastapi = "*"
  20. toml = "*"
  21. uvicorn = "*"
  22. types-toml = "*"
  23. numpy = "*"
  24. json-repair = "*"
  25. browsergym = "0.3.4" # integrate browsergym as the browsing interface
  26. html2text = "*"
  27. e2b = "^0.17.1"
  28. pexpect = "*"
  29. jinja2 = "^3.1.3"
  30. python-multipart = "*"
  31. boto3 = "*"
  32. minio = "^7.2.7"
  33. gevent = "^24.2.1"
  34. pyarrow = "17.0.0" # transitive dependency, pinned here to avoid conflicts
  35. tenacity = "^8.5.0"
  36. zope-interface = "6.4.post2"
  37. pathspec = "^0.12.1"
  38. google-cloud-aiplatform = "*"
  39. grep-ast = "0.3.2"
  40. tree-sitter = "0.21.3"
  41. [tool.poetry.group.llama-index.dependencies]
  42. llama-index = "*"
  43. llama-index-vector-stores-chroma = "*"
  44. chromadb = "*"
  45. llama-index-embeddings-huggingface = "*"
  46. torch = "2.2.2"
  47. llama-index-embeddings-azure-openai = "*"
  48. llama-index-embeddings-ollama = "*"
  49. [tool.poetry.group.dev.dependencies]
  50. ruff = "0.5.2"
  51. mypy = "1.10.1"
  52. pre-commit = "3.7.1"
  53. [tool.poetry.group.test.dependencies]
  54. pytest = "*"
  55. pytest-cov = "*"
  56. pytest-asyncio = "*"
  57. pytest-forked = "*"
  58. flake8 = "*"
  59. openai = "*"
  60. python-docx = "*"
  61. PyPDF2 = "*"
  62. pylatexenc = "*"
  63. python-pptx = "*"
  64. opencv-python = "*"
  65. pandas = "*"
  66. reportlab = "*"
  67. [tool.coverage.run]
  68. concurrency = ["gevent"]
  69. [tool.poetry.group.runtime.dependencies]
  70. jupyterlab = "*"
  71. notebook = "*"
  72. jupyter_kernel_gateway = "*"
  73. flake8 = "*"
  74. python-docx = "*"
  75. PyPDF2 = "*"
  76. python-pptx = "*"
  77. pylatexenc = "*"
  78. opencv-python = "*"
  79. [build-system]
  80. build-backend = "poetry.core.masonry.api"
  81. requires = [
  82. "poetry-core",
  83. ]
  84. [tool.autopep8]
  85. # autopep8 fights with mypy on line length issue
  86. ignore = [ "E501" ]
  87. [tool.black]
  88. # prevent black (if installed) from changing single quotes to double quotes
  89. skip-string-normalization = true
  90. [tool.ruff.lint]
  91. select = ["D"]
  92. # ignore warnings for missing docstrings
  93. ignore = ["D1"]
  94. [tool.ruff.lint.pydocstyle]
  95. convention = "google"
  96. [tool.poetry.group.evaluation.dependencies]
  97. streamlit = "*"
  98. whatthepatch = "*"
  99. retry = "*"
  100. evaluate = "*"
  101. swebench = { git = "https://github.com/OpenDevin/SWE-bench.git" }