pyproject.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. [tool.poetry]
  2. name = "opendevin"
  3. version = "0.7.1"
  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.5.0"
  35. zope-interface = "6.4.post2"
  36. pathspec = "^0.12.1"
  37. google-cloud-aiplatform = "*"
  38. [tool.poetry.group.llama-index.dependencies]
  39. llama-index = "*"
  40. llama-index-vector-stores-chroma = "*"
  41. chromadb = "*"
  42. llama-index-embeddings-huggingface = "*"
  43. torch = "2.2.2"
  44. llama-index-embeddings-azure-openai = "*"
  45. llama-index-embeddings-ollama = "*"
  46. [tool.poetry.group.dev.dependencies]
  47. ruff = "0.5.1"
  48. mypy = "1.10.1"
  49. pre-commit = "3.7.1"
  50. [tool.poetry.group.test.dependencies]
  51. pytest = "*"
  52. pytest-cov = "*"
  53. pytest-asyncio = "*"
  54. pytest-forked = "*"
  55. flake8 = "*"
  56. openai = "*"
  57. python-docx = "*"
  58. PyPDF2 = "*"
  59. pylatexenc = "*"
  60. python-pptx = "*"
  61. opencv-python = "*"
  62. pandas = "*"
  63. reportlab = "*"
  64. [tool.coverage.run]
  65. concurrency = ["gevent"]
  66. [tool.poetry.group.evaluation.dependencies]
  67. streamlit = "*"
  68. whatthepatch = "*"
  69. retry = "*"
  70. evaluate = "*"
  71. swebench = { git = "https://github.com/OpenDevin/SWE-bench.git" }
  72. [build-system]
  73. build-backend = "poetry.core.masonry.api"
  74. requires = [
  75. "poetry-core",
  76. ]
  77. [tool.autopep8]
  78. # autopep8 fights with mypy on line length issue
  79. ignore = [ "E501" ]
  80. [tool.black]
  81. # prevent black (if installed) from changing single quotes to double quotes
  82. skip-string-normalization = true