-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Poetry shell failed due to incorrect pyproject.toml format
- Loading branch information
korjsh
committed
Dec 13, 2024
1 parent
aa0bfbf
commit befb325
Showing
1 changed file
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] } | ||
|
@@ -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" |