-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.28 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
[project]
name = "dogy_agent"
version = "0.4.0"
description = "AI Assistant agent for Dogy App"
# authors = ["Sheape <86521166+Sheape@users.noreply.github.com>"]
# license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"azure-search-documents>=11.5.2",
"langchain-community>=0.3.13",
"langgraph-cli>=0.1.73",
"langgraph>=0.2.74",
"tavily-python>=0.5.0",
"azure-identity>=1.20.0",
"langchain>=0.3.20",
"fastapi>=0.115.12",
"langchain-openai>=0.3.12",
"cryptography>=43.0.3",
"flatten-dict>=0.4.2",
]
[dependency-groups]
dev = [
"langgraph-cli[inmem]>=0.1.73",
"pyright>=1.1.391",
"ruff>=0.8.4",
]
[tool.ruff.lint]
extend-select = [
"E", # Pycodestyle errors
"I", # Isort
"F", # Pyflakes
"B", # Flakes bugbear
"N", # PEP 8 Naming Conventions
"C", # Pylint Conventions
"R", # Refactor
"C4", # Comprehension
"SIM", # Simplify
"UP" # Pyupgrade
]
ignore = []
[tool.ruff]
line-length = 88
show-fixes = true
fix = true
target-version = "py312"
indent-width = 4
[tool.ruff.format]
indent-style = "space"
[lint.isort]
known-local-folder = ["dogy_agent"]
force-sort-within-sections = true
order-by-type = true
from-first = false
[tool.poetry.package.include]
src = { from = "dogy_agent" }