Skip to content

Commit

Permalink
fix: Poetry shell failed due to incorrect pyproject.toml format
Browse files Browse the repository at this point in the history
  • Loading branch information
korjsh committed Dec 13, 2024
1 parent aa0bfbf commit befb325
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
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"] }
Expand Down Expand Up @@ -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"

0 comments on commit befb325

Please sign in to comment.