-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 1.42 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
[project]
name = "grasper"
version = "0.1.0"
description = "AI-powered data analysis agent with PydanticAI, DuckDB, and OpenAI Codex integration"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"pydantic-ai-slim[duckduckgo,google,mcp]",
"google-generativeai",
"duckdb",
"fastapi",
"uvicorn[standard]",
"pandas",
"numpy",
"playwright",
"httpx",
"aiofiles",
"asyncio-throttle",
"tenacity",
"loguru",
"python-multipart",
"python-magic",
"openpyxl",
"pyarrow",
"plotly",
"matplotlib",
"seaborn",
"scikit-learn",
"scipy",
"beautifulsoup4",
"lxml",
"pillow",
"polars",
"logfire[fastapi]",
"psutil",
"python-dotenv",
"boilerpy3>=1.0.7",
"networkx>=3.5",
"streamlit>=1.48.0",
"html5lib>=1.1",
"pytest>=8.4.1",
"chardet>=5.2.0",
"urlextract>=1.9.0",
"mcp>=1.12.3",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"black",
"ruff",
"mypy",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["core", "agents", "api", "processors", "monitoring"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true