pyproject.toml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. [project]
  2. name = "open-webui"
  3. description = "Open WebUI"
  4. authors = [
  5. { name = "Timothy Jaeryang Baek", email = "tim@openwebui.com" }
  6. ]
  7. license = { file = "LICENSE" }
  8. dependencies = [
  9. "fastapi==0.111.0",
  10. "uvicorn[standard]==0.30.6",
  11. "pydantic==2.9.2",
  12. "python-multipart==0.0.9",
  13. "Flask==3.0.3",
  14. "Flask-Cors==5.0.0",
  15. "python-socketio==5.11.3",
  16. "python-jose==3.3.0",
  17. "passlib[bcrypt]==1.7.4",
  18. "requests==2.32.3",
  19. "aiohttp==3.10.8",
  20. "async-timeout",
  21. "sqlalchemy==2.0.32",
  22. "alembic==1.13.2",
  23. "peewee==3.17.6",
  24. "peewee-migrate==1.12.2",
  25. "psycopg2-binary==2.9.9",
  26. "PyMySQL==1.1.1",
  27. "bcrypt==4.2.0",
  28. "pymongo",
  29. "redis",
  30. "boto3==1.35.0",
  31. "argon2-cffi==23.1.0",
  32. "APScheduler==3.10.4",
  33. "openai",
  34. "anthropic",
  35. "google-generativeai==0.7.2",
  36. "tiktoken",
  37. "langchain==0.3.0",
  38. "langchain-community==0.2.12",
  39. "langchain-chroma==0.1.4",
  40. "fake-useragent==1.5.1",
  41. "chromadb==0.5.9",
  42. "pymilvus==2.4.7",
  43. "opensearch-py==2.7.1",
  44. "sentence-transformers==3.2.0",
  45. "colbert-ai==0.2.21",
  46. "einops==0.8.0",
  47. "ftfy==6.2.3",
  48. "pypdf==4.3.1",
  49. "fpdf2==2.7.9",
  50. "pymdown-extensions==10.11.2",
  51. "docx2txt==0.8",
  52. "python-pptx==1.0.0",
  53. "unstructured==0.15.9",
  54. "nltk==3.9.1",
  55. "Markdown==3.7",
  56. "pypandoc==1.13",
  57. "pandas==2.2.3",
  58. "openpyxl==3.1.5",
  59. "pyxlsb==1.0.10",
  60. "xlrd==2.0.1",
  61. "validators==0.33.0",
  62. "psutil",
  63. "soundfile==0.12.1",
  64. "opencv-python-headless==4.10.0.84",
  65. "rapidocr-onnxruntime==1.3.24",
  66. "rank-bm25==0.2.2",
  67. "faster-whisper==1.0.3",
  68. "PyJWT[crypto]==2.9.0",
  69. "authlib==1.3.2",
  70. "black==24.8.0",
  71. "langfuse==2.44.0",
  72. "youtube-transcript-api==0.6.2",
  73. "pytube==15.0.0",
  74. "extract_msg",
  75. "pydub",
  76. "duckduckgo-search~=6.2.13",
  77. "docker~=7.1.0",
  78. "pytest~=8.3.2",
  79. "pytest-docker~=3.1.1",
  80. "googleapis-common-protos==1.63.2"
  81. ]
  82. readme = "README.md"
  83. requires-python = ">= 3.11, < 3.12.0a1"
  84. dynamic = ["version"]
  85. classifiers = [
  86. "Development Status :: 4 - Beta",
  87. "License :: OSI Approved :: MIT License",
  88. "Programming Language :: Python :: 3",
  89. "Programming Language :: Python :: 3.11",
  90. "Topic :: Communications :: Chat",
  91. "Topic :: Multimedia",
  92. ]
  93. [project.scripts]
  94. open-webui = "open_webui:app"
  95. [build-system]
  96. requires = ["hatchling"]
  97. build-backend = "hatchling.build"
  98. [tool.rye]
  99. managed = true
  100. dev-dependencies = []
  101. [tool.hatch.metadata]
  102. allow-direct-references = true
  103. [tool.hatch.version]
  104. path = "package.json"
  105. pattern = '"version":\s*"(?P<version>[^"]+)"'
  106. [tool.hatch.build.hooks.custom] # keep this for reading hooks from `hatch_build.py`
  107. [tool.hatch.build.targets.wheel]
  108. sources = ["backend"]
  109. exclude = [
  110. ".dockerignore",
  111. ".gitignore",
  112. ".webui_secret_key",
  113. "dev.sh",
  114. "requirements.txt",
  115. "start.sh",
  116. "start_windows.bat",
  117. "webui.db",
  118. "chroma.sqlite3",
  119. ]
  120. force-include = { "CHANGELOG.md" = "open_webui/CHANGELOG.md", build = "open_webui/frontend" }