-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 747 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 747 Bytes
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
[project]
name = "onchain-intel"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Haseeb Ali", email = "hasiib.live@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"langchain>=1.3.2",
"langchain-anthropic>=1.4.3",
"langchain-google-genai>=4.2.3",
"langchain-groq>=1.1.2",
"langsmith>=0.8.5",
"pydantic>=2.13.4",
"python-dotenv>=1.2.2",
]
[project.scripts]
onchain-intel = "onchain_intel:main"
[build-system]
requires = ["uv_build>=0.11.16,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = ["pyright>=1.1.409", "ruff>=0.15.14"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]