From e47ca511a1180d3417f3d727472b9895e067df5f Mon Sep 17 00:00:00 2001 From: korjsh Date: Fri, 13 Dec 2024 12:39:08 +0900 Subject: [PATCH 1/3] fix: Poetry shell failed due to incorrect pyproject.toml format --- pyproject.toml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4484ae2e3..0942719c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,28 @@ classifiers = [ urls = { Homepage = "https://github.com/Marker-Inc-Korea/AutoRAG" } dynamic = ["version", "dependencies"] +[tool.poetry] +name = "AutoRAG" +version = "v0.1.0" +description = "Automatically Evaluate RAG pipelines with your own data. Find optimal structure for new RAG product." +authors = ["Marker-Inc "] +readme = "README.md" +license = "MIT" +homepage = "https://github.com/Marker-Inc-Korea/AutoRAG" +keywords = ["RAG", "AutoRAG", "autorag", "rag-evaluation", "evaluation", "rag-auto", "AutoML", "AutoML-RAG"] +classifiers = [ + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Intended Audience :: Science/Research", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Libraries :: Python Modules", +] + + [tool.setuptools.dynamic] version = { file = ["autorag/VERSION"] } dependencies = { file = ["requirements.txt"] } @@ -140,4 +162,4 @@ docstring-code-format = true # # This only has an effect when the `docstring-code-format` setting is # enabled. -docstring-code-line-length = "dynamic" +docstring-code-line-length = "dynamic" \ No newline at end of file From bac819e93b1f40751bf1711cb4d1eb121235d1ec Mon Sep 17 00:00:00 2001 From: korjsh Date: Mon, 16 Dec 2024 09:07:49 +0900 Subject: [PATCH 2/3] fix: Improved poetry pyproject.toml format --- pyproject.toml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0942719c2..204d7837a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,25 +28,9 @@ dynamic = ["version", "dependencies"] [tool.poetry] name = "AutoRAG" -version = "v0.1.0" +version = "0.0.2" #base version description = "Automatically Evaluate RAG pipelines with your own data. Find optimal structure for new RAG product." authors = ["Marker-Inc "] -readme = "README.md" -license = "MIT" -homepage = "https://github.com/Marker-Inc-Korea/AutoRAG" -keywords = ["RAG", "AutoRAG", "autorag", "rag-evaluation", "evaluation", "rag-auto", "AutoML", "AutoML-RAG"] -classifiers = [ - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Intended Audience :: Science/Research", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Topic :: Scientific/Engineering :: Artificial Intelligence", - "Topic :: Software Development :: Libraries", - "Topic :: Software Development :: Libraries :: Python Modules", -] - [tool.setuptools.dynamic] version = { file = ["autorag/VERSION"] } @@ -162,4 +146,4 @@ docstring-code-format = true # # This only has an effect when the `docstring-code-format` setting is # enabled. -docstring-code-line-length = "dynamic" \ No newline at end of file +docstring-code-line-length = "dynamic" From fd5d0f8ba2b36389dfccabfa5865baf25623f957 Mon Sep 17 00:00:00 2001 From: korjsh Date: Mon, 16 Dec 2024 09:29:33 +0900 Subject: [PATCH 3/3] fix: change tool.poetry version comment --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 204d7837a..44d99890d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dynamic = ["version", "dependencies"] [tool.poetry] name = "AutoRAG" -version = "0.0.2" #base version +version = "0.0.2" #initial version description = "Automatically Evaluate RAG pipelines with your own data. Find optimal structure for new RAG product." authors = ["Marker-Inc "]