pyproject.toml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. [tool.poetry]
  2. name = "opendevin"
  3. version = "0.8.3"
  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 = "7.0.1"
  37. pathspec = "^0.12.1"
  38. google-cloud-aiplatform = "*"
  39. grep-ast = "0.3.3"
  40. tree-sitter = "0.21.3"
  41. bashlex = "^0.18"
  42. pyjwt = "^2.9.0"
  43. dirhash = "*"
  44. [tool.poetry.group.llama-index.dependencies]
  45. llama-index = "*"
  46. llama-index-vector-stores-chroma = "*"
  47. chromadb = "*"
  48. llama-index-embeddings-huggingface = "*"
  49. torch = "2.2.2"
  50. llama-index-embeddings-azure-openai = "*"
  51. llama-index-embeddings-ollama = "*"
  52. [tool.poetry.group.dev.dependencies]
  53. ruff = "0.5.7"
  54. mypy = "1.11.1"
  55. pre-commit = "3.8.0"
  56. build = "*"
  57. [tool.poetry.group.test.dependencies]
  58. pytest = "*"
  59. pytest-cov = "*"
  60. pytest-asyncio = "*"
  61. pytest-forked = "*"
  62. flake8 = "*"
  63. openai = "*"
  64. python-docx = "*"
  65. PyPDF2 = "*"
  66. pylatexenc = "*"
  67. python-pptx = "*"
  68. opencv-python = "*"
  69. pandas = "*"
  70. reportlab = "*"
  71. [tool.coverage.run]
  72. concurrency = ["gevent"]
  73. [tool.poetry.group.runtime.dependencies]
  74. jupyterlab = "*"
  75. notebook = "*"
  76. jupyter_kernel_gateway = "*"
  77. flake8 = "*"
  78. python-docx = "*"
  79. PyPDF2 = "*"
  80. python-pptx = "*"
  81. pylatexenc = "*"
  82. opencv-python = "*"
  83. [build-system]
  84. build-backend = "poetry.core.masonry.api"
  85. requires = [
  86. "poetry-core",
  87. ]
  88. [tool.autopep8]
  89. # autopep8 fights with mypy on line length issue
  90. ignore = [ "E501" ]
  91. [tool.black]
  92. # prevent black (if installed) from changing single quotes to double quotes
  93. skip-string-normalization = true
  94. [tool.ruff.lint]
  95. select = ["D"]
  96. # ignore warnings for missing docstrings
  97. ignore = ["D1"]
  98. [tool.ruff.lint.pydocstyle]
  99. convention = "google"
  100. [tool.poetry.group.evaluation.dependencies]
  101. streamlit = "*"
  102. whatthepatch = "*"
  103. retry = "*"
  104. evaluate = "*"
  105. swebench = { git = "https://github.com/OpenDevin/SWE-bench.git" }
  106. func_timeout = "*"
  107. sympy = "*"
  108. gdown = "*"