From 4b2b334d2c344649816abe79fe06a80e9506c548 Mon Sep 17 00:00:00 2001 From: "Quang (Albert)" Date: Fri, 30 Aug 2024 23:02:14 +0700 Subject: [PATCH] fix: refine kotaemon/pyproject.toml (#153) --- libs/kotaemon/pyproject.toml | 46 ++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/libs/kotaemon/pyproject.toml b/libs/kotaemon/pyproject.toml index f1e1f83..8727bc0 100644 --- a/libs/kotaemon/pyproject.toml +++ b/libs/kotaemon/pyproject.toml @@ -21,27 +21,29 @@ dynamic = ["version"] requires-python = ">= 3.10" description = "Kotaemon core library for AI development." dependencies = [ + "click>=8.1.7,<9", + "cohere>=5.3.2,<5.4", + "cookiecutter>=2.6.0,<2.7", + "fast_langdetect", + "gradio>=4.31.0,<4.40", + "html2text==2024.2.26", "langchain>=0.1.16,<0.2.0", "langchain-community>=0.0.34,<0.1.0", "langchain-openai>=0.1.4,<0.2.0", - "openai>=1.23.6,<2", - "theflow>=0.8.6,<0.9.0", + "llama-hub>=0.0.79,<0.1.0", "llama-index>=0.10.40,<0.11.0", "llama-index-vector-stores-chroma>=0.1.9", "llama-index-vector-stores-lancedb", - "llama-hub>=0.0.79,<0.1.0", - "gradio>=4.31.0,<4.40", + "openai>=1.23.6,<2", "openpyxl>=3.1.2,<3.2", - "cookiecutter>=2.6.0,<2.7", - "click>=8.1.7,<9", "pandas>=2.2.2,<2.3", - "trogon>=0.5.0,<0.6", - "tenacity>=8.2.3,<8.3", - "python-dotenv>=1.0.1,<1.1", - "pypdf>=4.2.0,<4.3", + "plotly", "PyMuPDF>=1.23", - "html2text==2024.2.26", - "cohere>=5.3.2,<5.4", + "pypdf>=4.2.0,<4.3", + "python-dotenv>=1.0.1,<1.1", + "tenacity>=8.2.3,<8.3", + "theflow>=0.8.6,<0.9.0", + "trogon>=0.5.0,<0.6", ] readme = "README.md" authors = [ @@ -57,27 +59,25 @@ classifiers = [ [project.optional-dependencies] adv = [ - "wikipedia>=1.4.0,<1.5", + "azure-ai-documentintelligence", + "beautifulsoup4>=4.12.3,<4.13", "duckduckgo-search>=6.1.0,<6.2", + "elasticsearch>=8.13.0,<8.14", "googlesearch-python>=1.2.4,<1.3", "python-docx>=1.1.0,<1.2", - "elasticsearch>=8.13.0,<8.14", - "beautifulsoup4>=4.12.3,<4.13", - "plotly", "tabulate", - "fast_langdetect", - "azure-ai-documentintelligence", + "wikipedia>=1.4.0,<1.5", ] dev = [ + "black", + "coverage", + "flake8", "ipython", + "pre-commit", "pytest", "pytest-mock", - "pre-commit", - "black", - "flake8", + "python-decouple", "sphinx", - "coverage", - "python-decouple" ] all = ["kotaemon[adv,dev]"]