-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.21 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
[project]
name = "loop-engineering"
version = "1.0.0"
description = "Loop Engineering Blog Refinement System using Microsoft Agent Framework"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Loop Engineering Team" }
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.9.0",
"pydantic-settings>=2.6.0",
"python-dotenv>=1.0.1",
"aiosqlite>=0.20.0",
"httpx>=0.27.0",
"opentelemetry-api>=1.28.0",
"opentelemetry-sdk>=1.28.0",
"opentelemetry-exporter-otlp-proto-http>=1.28.0",
"azure-monitor-opentelemetry-exporter>=1.0.0b31",
"agent-framework>=1.0.0",
"azure-identity>=1.19.0",
"azure-core>=1.32.0",
"azure-storage-blob>=12.23.0",
"azure-cosmos>=4.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"anyio>=4.6.0",
"ruff>=0.7.0",
]
[project.scripts]
loop-engineering = "app.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 100
target-version = "py312"