-
Notifications
You must be signed in to change notification settings - Fork 692
/
Copy pathpyproject.toml
91 lines (80 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ragaai_catalyst"
description = "RAGA AI CATALYST"
readme = "README.md"
requires-python = ">=3.9,<3.13"
# license = {file = "LICENSE"}
version = "2.1.3"
authors = [
{name = "Kiran Scaria", email = "[email protected]"},
{name = "Siddhartha Kosti", email = "[email protected]"},
{name = "Ritika Goel", email = "[email protected]"},
{name = "Vijay Chaurasia", email="[email protected]"},
{name = "Tanaya Pakhale", email="[email protected]"},
{name = "Tushar Kumar", email="[email protected]"},
]
dependencies = [
"aiohttp>=3.10.2", # Ref: https://github.com/raga-ai-hub/ragaai-catalyst/security/dependabot/1
"opentelemetry-api==1.25.0",
"opentelemetry-sdk==1.25.0",
"opentelemetry-exporter-otlp-proto-grpc==1.25.0",
"opentelemetry-instrumentation==0.46b0",
"opentelemetry-instrumentation-fastapi==0.46b0",
"opentelemetry-instrumentation-asgi==0.46b0",
"opentelemetry-semantic-conventions==0.46b0",
"opentelemetry-util-http==0.46b0",
"opentelemetry-instrumentation-langchain~=0.24.0",
"opentelemetry-instrumentation-openai~=0.24.0",
"langchain-core>=0.2.11",
"langchain>=0.2.11",
"openai>=1.57.0",
"pandas",
"groq>=0.11.0",
"PyPDF2>=3.0.1",
"google-generativeai>=0.8.2",
"Markdown>=3.7",
"litellm==1.51.1",
"tenacity==8.3.0",
"tqdm>=4.66.5",
"llama-index>=0.10.0,<0.11.0",
"pyopenssl>=24.2.1",
"psutil~=6.0.0",
"py-cpuinfo~=9.0.0",
"requests~=2.32.3",
"GPUtil~=1.4.0",
"astor>=0.8.1",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "black", "isort", "mypy", "flake8"]
[tool.setuptools]
packages = ["ragaai_catalyst"]
# [tool.setuptools_scm]
# write_to = "ragaai_catalyst/_version.py"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
ignore_missing_imports = true
strict = true
[tool.pytest.ini_options]
addopts = "--cov=ragaai_catalyst"
testpaths = ["tests"]
[tool.coverage.run]
source = ["ragaai_catalyst"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"pass",
"except ImportError:",
]