-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.14 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
[project]
name = "crm-campaign-intelligence"
version = "0.1.0"
description = "CRM campaign intelligence"
authors = [{name = "Ricardo Cataldi", email = "rcataldi@microsoft.com"}]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.135.3",
"fastapi-mcp",
"uvicorn>=0.44.0",
"pydantic>=2",
"agent-framework>=1.2.2",
"azure-ai-projects>=2.0.1",
"azure-identity",
"azure-search-documents",
"azure-cosmos",
"azure-storage-blob",
"azure-eventhub",
"redis>=7.4.0",
"asyncpg>=0.30.0",
"holiday-peak-lib>=0.2.0"
]
[project.optional-dependencies]
dev = ["faker", "pre-commit", "python-dotenv", "debugpy"]
test = ["pytest", "pytest-cov", "pytest-asyncio", "httpx", "requests"]
lint = ["pylint", "isort", "black[jupyter]>=25.1.0"]
[tool.uv.sources]
holiday-peak-lib = { git = "https://github.com/Azure-Samples/holiday-peak-hub.git", branch = "main", subdirectory = "lib/src" }
[tool.pytest.ini_options]
addopts = "-ra -q -s --cov=crm_campaign_intelligence --cov-report=term-missing"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"