diff --git a/pyproject.toml b/pyproject.toml index f2b8bb1..d06cf5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,14 +8,14 @@ dynamic = ["version"] description = 'A simple package for implementing RAG' readme = "README.md" requires-python = ">=3.8" -license = "MIT" -keywords = ["RAG", "Retrieval Augmented Generation", "LLM", "Graph"] +license = { file = 'LICENSE' } +keywords = ["RAG", "Retrieval Augmented Generation", "LLM", "retrieval", "quantization"] authors = [ { name = "Arjun Bingly", email = "arjunbin@gmail.com" }, { name = "Sanchit Vijay", email = "sanchitvj1026@gmail.com" } ] classifiers = [ - "Development Status :: 1 - Planning", + "Development Status :: 3 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -43,7 +43,7 @@ dependencies = [ "pydantic>=2.5.0", "rouge-score>=0.1.2", "deeplake>=3.8.27", - "bitsandbytes>=0.43.0", + "bitsandbytes>=0.42.0", "accelerate>=0.28.0", "poppler-utils>=0.1.0", "tesseract>=0.1.3" @@ -57,13 +57,13 @@ dev = [ "ruff", "sphinx", "sphinx-rtd-theme", - "sphinx-gallery" + "sphinx-gallery", ] [project.urls] -Documentation = "https://github.com/arjbingly/Capstone_5#readme" -Issues = "https://github.com/arjbingly/Capstone_5/issues" -Source = "https://github.com/arjbingly/Capstone_5/" +Documentation = "https://g-rag.org/" +Issues = "https://github.com/arjbingly/grag/issues" +Repository = "https://github.com/arjbingly/grag.git" [tool.hatch.version] path = "src/grag/__about__.py" diff --git a/src/grag/__about__.py b/src/grag/__about__.py index f102a9c..bac4980 100644 --- a/src/grag/__about__.py +++ b/src/grag/__about__.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.0.1b0"