-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (39 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
41 lines (39 loc) · 881 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
[project]
name = "uv-fastapi-example"
version = "0.1.0"
description = "AI Service"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi[standard]>=0.115.12",
"langchain-openai>=0.3.18",
"langgraph>=0.2.0",
"openai>=1.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"ruff>=0.11.12",
"redis>=5.0.0",
"aiosmtplib>=4.0.1",
"fastapi-mcp>=0.4.0",
"icalendar>=6.3.1",
"ics>=0.7.2",
"pendulum>=3.1.0",
"types-redis>=4.6.0.20241004",
"pytest-cov>=7.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
"black>=23.0.0",
"mypy>=1.0.0",
"pylint>=2.17.0",
]
[tool.mypy]
python_version = "3.11"
packages = ["app"]
explicit_package_bases = true
namespace_packages = true
ignore_missing_imports = true