-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 869 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
38
39
40
41
42
43
44
45
[project]
name = "mohaeng-ai"
version = "0.1.0"
description = "Monhaeng service AI server."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.128.0",
"langchain-openai>=1.1.7",
"langgraph>=1.0.6",
"openai>=2.15.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"python-dotenv>=1.2.1",
"httpx>=0.28.0",
"requests>=2.32.5",
]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "B"]
ignore = ["B008"]
[tool.ruff.lint.isort]
known-first-party = ["app"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"ruff>=0.14.11",
]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]