-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.15 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
[project]
name = "processor"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agent-framework==1.0.0b260107",
"aiohttp==3.13.3",
"art==6.5",
"azure-ai-agents==1.2.0b5",
"azure-ai-inference==1.0.0b9",
"azure-ai-projects==2.0.0b3",
"azure-appconfiguration==1.7.2",
"azure-core==1.38.0",
"azure-identity==1.26.0b1",
"azure-storage-blob==12.28.0",
"azure-storage-file-datalake==12.23.0",
"azure-storage-queue==12.15.0",
"fastmcp==2.14.5",
"jinja2==3.1.6",
"kafka-python==2.3.0",
"mcp==1.25.0",
"openai==2.15.0",
"psutil==7.2.1",
"pytz==2025.2",
"sas-cosmosdb==0.1.4",
"sas-storage==1.0.0",
"tenacity==9.1.2",
]
[dependency-groups]
dev = [
"pre-commit==4.5.1",
"pytest==9.0.2",
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = []
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["src/tests"]
pythonpath = ["src"]
[tool.uv]
prerelease = "allow"