-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (19 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
24 lines (19 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "crm-segmentation-personalization"
version = "0.1.0"
description = "CRM segmentation and personalization"
authors = [{name = "Ricardo Cataldi", email = "rcataldi@microsoft.com"}]
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_segmentation_personalization --cov-report=term-missing"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"