forked from Team-StackUp/stackup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "stackup-ai-server"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.135.2",
"uvicorn[standard]>=0.42.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"httpx>=0.28.1",
"aio-pika>=9.6.2",
"boto3>=1.42.77",
"aiofiles>=24.1.0",
"pypdf>=5.1.0",
"pymupdf>=1.24.0",
"trafilatura>=2.0.0",
"playwright>=1.49.0",
"langchain-text-splitters>=0.3.0",
"google-genai>=1.0.0",
"langchain>=1.2.13",
"langchain-core>=1.2.22",
"langchain-community>=0.4.1",
"langchain-openai>=0.3.0",
"structlog>=25.5.0",
"websockets>=13",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"black>=26.3.1",
"flake8>=7.3.0",
"pylint>=4.0.5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/ai_server"]
[tool.black]
line-length = 88
target-version = ["py313"]
[tool.pylint.messages_control]
disable = ["C0114", "C0115", "C0116"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"