-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1.51 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
[project]
name = "reflex-langgraph-challenge"
version = "1.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"streamlit>=1.54.0",
"graphviz>=0.21",
"pillow>=12.1.1",
"litellm==1.82.6",
"google-adk>=1.27.2",
"google-genai>=1.68.0",
"openai>=2.23.0",
"openai-agents[viz]>=0.10.3",
"langchain>=1.2.13",
"langchain-anthropic>=1.4.3",
"langchain-google-genai>=4.2.2",
"langchain-openai>=1.1.12",
"langchain-tavily>=0.2.17",
"langgraph>=1.1.3",
"pycountry>=26.2.16",
"boto3>=1.42.78",
"fal-client>=1.0.0",
]
[dependency-groups]
dev = [
"ipykernel>=7.2.0",
]
[tool.ruff.lint.isort]
# 1. 커스텀 모듈(내가 만든 폴더 이름)을 강제로 'First Party' 섹션으로 지정합니다.
known-first-party = ["data", "services", "tools", "agent"]
# 2. 각 섹션 위에 자동으로 붙을 주석 헤더를 정의합니다.
section-order = ["standard-library", "third-party", "first-party", "local-folder"]
[tool.ruff.lint.isort.sections]
"standard-library" = ["# ==========================================", "# 1. Python Default", "# =========================================="]
"third-party" = ["# ==========================================", "# 2. Installed Packages", "# =========================================="]
"first-party" = ["# ==========================================", "# 3. Custom Files", "# =========================================="]