pyproject.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.0"
  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.3.0"
  35. [tool.poetry.group.llama-index.dependencies]
  36. llama-index = "*"
  37. llama-index-vector-stores-chroma = "*"
  38. chromadb = "*"
  39. llama-index-embeddings-huggingface = "*"
  40. torch = "2.2.2"
  41. llama-index-embeddings-azure-openai = "*"
  42. llama-index-embeddings-ollama = "*"
  43. [tool.poetry.group.dev.dependencies]
  44. ruff = "0.4.6"
  45. mypy = "1.10.0"
  46. pre-commit = "3.7.1"
  47. [tool.poetry.group.test.dependencies]
  48. pytest = "*"
  49. pytest-cov = "*"
  50. pytest-asyncio = "*"
  51. pytest-forked = "*"
  52. flake8 = "*"
  53. openai = "*"
  54. python-docx = "*"
  55. PyPDF2 = "*"
  56. pylatexenc = "*"
  57. python-pptx = "*"
  58. opencv-python = "*"
  59. pandas = "*"
  60. reportlab = "*"
  61. [tool.coverage.run]
  62. concurrency = ["gevent"]
  63. [tool.poetry.group.evaluation.dependencies]
  64. streamlit = "*"
  65. whatthepatch = "*"
  66. retry = "*"
  67. evaluate = "*"
  68. [build-system]
  69. build-backend = "poetry.core.masonry.api"
  70. requires = [
  71. "poetry-core",
  72. ]
  73. [tool.autopep8]
  74. # autopep8 fights with mypy on line length issue
  75. ignore = [ "E501" ]
  76. [tool.black]
  77. # prevent black (if installed) from changing single quotes to double quotes
  78. skip-string-normalization = true