pyproject.toml 2.1 KB

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