-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from arjbingly/packaging
Packaging
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
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 |
---|---|---|
|
@@ -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 = "[email protected]" }, | ||
{ name = "Sanchit Vijay", email = "[email protected]" } | ||
] | ||
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" | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.1" | ||
__version__ = "0.0.1b0" |