-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (60 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
64 lines (60 loc) · 1.49 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "data-tools"
version = "0.1.0"
description = "A library for data processing tools."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"langchain[anthropic,aws,cohere,google-genai,google-vertexai,groq]>=0.3.27",
"langchain-community>=0.3.21",
"langchain-openai>=0.3.28",
"langgraph>=0.6.4",
"nltk>=3.9.1",
"numpy==1.26.2",
"asyncpg>=0.30.0",
"fastapi[standard]>=0.116.1",
"matplotlib>=3.10.5",
"mcp[cli]>=1.12.4",
"networkx>=3.4.2",
"pandas>=2.3.1",
"pyaml>=25.7.0",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pyfunctional>=1.5.0",
"python-dotenv>=1.1.1",
"scikit-learn==1.2.2",
"symspellpy>=6.9.0",
"trieregex>=1.0.0",
"xgboost==1.7.5",
"pyyaml>=6.0.2",
"langchain-deepseek>=0.1.4",
"langchain-nvidia-ai-endpoints>=0.3.16",
"langchain-xai>=0.2.5",
"langchain-perplexity>=0.1.2",
]
[dependency-groups]
test = [
"langchain-core>=0.3.74",
"langchain-mcp-adapters>=0.1.9",
"pytest",
"pytest-asyncio>=1.1.0",
]
lint = ["ruff"]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
]
[tool.ruff]
src = ["src"]
[tool.setuptools.packages.find]
where = ["src"]