From 4404fda3736944c998ddbe225a893db2affe6b35 Mon Sep 17 00:00:00 2001 From: korjsh Date: Fri, 13 Dec 2024 12:39:08 +0900 Subject: [PATCH] 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