forked from PromtEngineer/agentic-file-search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 820 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 820 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
34
35
36
37
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fs-explorer"
version = "0.1.0"
description = "Explore and understand your filesystem better with AI."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"docling>=2.55.0",
"fastapi>=0.115.0",
"langchain>=0.1.0",
"langchain-openai>=0.1.0",
"langchain-core>=0.1.0",
"llama-index-workflows>=2.11.5",
"python-dotenv>=1.0.0",
"reportlab>=4.4.7",
"rich>=13.0.0",
"typer>=0.12.5,<0.20.0",
"uvicorn>=0.34.0",
"websockets>=14.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.5.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.9",
"ty>=0.0.1a33",
]
[project.scripts]
explore = "fs_explorer.main:app"
explore-ui = "fs_explorer.server:run_server"