-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (90 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
107 lines (90 loc) · 2.74 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag-ing"
version = "0.1.0"
description = "A comprehensive RAG application with multiple connectors and dynamic model selection"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Selva kumar", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
# Production dependencies - Updated November 2025
# All packages on latest stable versions except where noted
# Web framework and server
"fastapi>=0.121.1",
"uvicorn>=0.38.0",
# HTTP and parsing
"requests>=2.32.5",
"beautifulsoup4>=4.14.2",
# Configuration and environment
"python-dotenv>=1.2.1",
"pydantic>=2.12.4",
"pydantic-settings>=2.12.0",
"PyYAML>=6.0.3",
# Data science and numerical computing
"numpy>=2.3.4",
"pandas>=2.3.3",
# AI and machine learning
"tiktoken>=0.12.0",
"anthropic>=0.72.0",
"sentence-transformers>=5.1.2",
"ragas>=0.3.8",
# Vector database and search
"faiss-cpu>=1.12.0",
"chromadb>=1.3.4",
"rank-bm25>=0.2.2",
# Document processing
"pdfplumber>=0.11.8",
"pymupdf>=1.26.6",
"feedparser>=0.12",
"markdown-it-py>=4.0.0",
# LangChain ecosystem - Updated to 1.x (November 2025)
"langchain>=1.0.5",
"langchain-community>=0.4.1",
"langchain-openai>=1.0.2",
"langchain-huggingface>=1.0.1",
# OpenAI SDK - Updated to 2.x (November 2025)
# Compatible with existing code (chat.completions.create API unchanged)
"openai>=2.7.2", # Snowflake - Pinned at 3.x
# Version 4.x requires code migration (breaking API changes)
# See MIGRATION_GUIDE.md for upgrade instructions
"snowflake-connector-python>=3.17.4,<4.0.0",
"snowflake-sqlalchemy>=1.7.7",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"pytest-cov>=7.0.0",
"black>=25.11.0",
"flake8>=7.3.0",
"mypy>=1.18.2",
]
[project.urls]
Homepage = "https://github.com/selva-k-r/RAG-ing"
Repository = "https://github.com/selva-k-r/RAG-ing"
Issues = "https://github.com/selva-k-r/RAG-ing/issues"
[project.scripts]
rag-ing = "rag_ing.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true