-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
61 lines (57 loc) · 1.31 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
[project]
name = "menu-api"
version = "0.1.0"
description = "A FastAPI-based menu management API with AI-powered recipe generation"
authors = [
{name = "aime-n", email = "aime.nobrega@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"fastapi>=0.115.0",
"streamlit>=1.45.0",
"langgraph>=0.4.8",
"langchain-openai>=0.3.23",
"httpx>=0.28.1",
"sqlmodel>=0.0.24",
"alembic>=1.16.1",
"python-dotenv>=1.1.0",
"uvicorn>=0.34.3",
"langchain>=0.3.25",
"sqlalchemy>=2.0.41",
"langchain-core>=0.3.65",
"sse-starlette>=2.3.6",
"langfuse>=3.0.2",
"psycopg2-binary>=2.9.10",
"pydantic>=2.11.7",
"pydantic-settings>=2.9.1",
"supabase>=2.15.3",
"loguru>=0.7.3",
]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"pytest>=8.4.0",
"mypy>=1.16.1",
"coverage>=7.9.1",
"bandit>=1.8.5",
"flake8>=7.2.0",
"cruft>=2.16.0",
"pytest-dotenv>=0.5.2",
]
[tool.poetry]
packages = [
{ include = "app" },
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true