-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 876 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
[project]
name = "crewai_web_search"
version = "0.1.0"
description = "A CrewAI-based web search agent with FastAPI, deployable on OpenShift."
authors = [{ name = "Your Name", email = "you@example.com" }]
license = { text = "MIT" }
requires-python = ">=3.12,<3.14"
dependencies = [
"fastapi>=0.135.1",
"uvicorn[standard]>=0.41.0",
"crewai[litellm]>=1.11.0",
"litellm!=1.82.7,!=1.82.8", # Block compromised PyPI releases
"python-dotenv>=1.1.1,<1.2.0", # CrewAI pins ~=1.1.1
"setuptools>=80.9.0,<82.0.0",
"flask==3.1.3"
]
[project.optional-dependencies]
dev = [
"httpx>=0.27",
"pytest>=9.0.2",
]
tracing = [
"mlflow>=3.10.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
crewai_web_search = ["config/*.yaml"]
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"