fix: refine kotaemon/pyproject.toml (#153)

This commit is contained in:
Quang (Albert) 2024-08-30 23:02:14 +07:00 committed by GitHub
parent d880294153
commit 4b2b334d2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,27 +21,29 @@ dynamic = ["version"]
requires-python = ">= 3.10" requires-python = ">= 3.10"
description = "Kotaemon core library for AI development." description = "Kotaemon core library for AI development."
dependencies = [ 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>=0.1.16,<0.2.0",
"langchain-community>=0.0.34,<0.1.0", "langchain-community>=0.0.34,<0.1.0",
"langchain-openai>=0.1.4,<0.2.0", "langchain-openai>=0.1.4,<0.2.0",
"openai>=1.23.6,<2", "llama-hub>=0.0.79,<0.1.0",
"theflow>=0.8.6,<0.9.0",
"llama-index>=0.10.40,<0.11.0", "llama-index>=0.10.40,<0.11.0",
"llama-index-vector-stores-chroma>=0.1.9", "llama-index-vector-stores-chroma>=0.1.9",
"llama-index-vector-stores-lancedb", "llama-index-vector-stores-lancedb",
"llama-hub>=0.0.79,<0.1.0", "openai>=1.23.6,<2",
"gradio>=4.31.0,<4.40",
"openpyxl>=3.1.2,<3.2", "openpyxl>=3.1.2,<3.2",
"cookiecutter>=2.6.0,<2.7",
"click>=8.1.7,<9",
"pandas>=2.2.2,<2.3", "pandas>=2.2.2,<2.3",
"trogon>=0.5.0,<0.6", "plotly",
"tenacity>=8.2.3,<8.3",
"python-dotenv>=1.0.1,<1.1",
"pypdf>=4.2.0,<4.3",
"PyMuPDF>=1.23", "PyMuPDF>=1.23",
"html2text==2024.2.26", "pypdf>=4.2.0,<4.3",
"cohere>=5.3.2,<5.4", "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" readme = "README.md"
authors = [ authors = [
@ -57,27 +59,25 @@ classifiers = [
[project.optional-dependencies] [project.optional-dependencies]
adv = [ adv = [
"wikipedia>=1.4.0,<1.5", "azure-ai-documentintelligence",
"beautifulsoup4>=4.12.3,<4.13",
"duckduckgo-search>=6.1.0,<6.2", "duckduckgo-search>=6.1.0,<6.2",
"elasticsearch>=8.13.0,<8.14",
"googlesearch-python>=1.2.4,<1.3", "googlesearch-python>=1.2.4,<1.3",
"python-docx>=1.1.0,<1.2", "python-docx>=1.1.0,<1.2",
"elasticsearch>=8.13.0,<8.14",
"beautifulsoup4>=4.12.3,<4.13",
"plotly",
"tabulate", "tabulate",
"fast_langdetect", "wikipedia>=1.4.0,<1.5",
"azure-ai-documentintelligence",
] ]
dev = [ dev = [
"black",
"coverage",
"flake8",
"ipython", "ipython",
"pre-commit",
"pytest", "pytest",
"pytest-mock", "pytest-mock",
"pre-commit", "python-decouple",
"black",
"flake8",
"sphinx", "sphinx",
"coverage",
"python-decouple"
] ]
all = ["kotaemon[adv,dev]"] all = ["kotaemon[adv,dev]"]