-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.27 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zrag"
version = "0.1.3"
authors = [
{name = "Akshay Gautam", email = "[email protected]"}
]
description = "A simple library for building Retrieval Augmented Generation (RAG) applications."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"torch",
"pymupdf",
"spacy",
"nltk",
"transformers",
"faiss-cpu",
"chromadb",
"jinja2",
"markdown"
]
[project.urls]
"Homepage" = "https://github.com/Ak-Gautam/sRAG "
"Bug Tracker" = "https://github.com/Ak-Gautam/sRAG/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov-report term-missing --cov=zrag"
[tool.coverage.run]
source = ["zrag"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"raise ImportError",
]