-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (57 loc) · 1.36 KB
/
pyproject.toml
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
58
59
60
61
62
[tool.poetry]
name = "chat-with-your-data-solution-accelerator"
version = "0.1.0"
description = "Chat with your data solution accelerator"
authors = []
readme = "README.md"
packages = [
{ include = "code" }
]
[tool.poetry.dependencies]
python = "^3.10"
azure-functions = "1.19.0"
streamlit = "1.33.0"
scipy = "1.13.0"
transformers = "4.39.3"
python-dotenv = "1.0.1"
azure-ai-formrecognizer = "3.3.3"
azure-storage-blob = "12.19.1"
azure-identity = "1.16.0"
flask = "3.0.3"
openai = "1.17.1"
langchain = "0.1.16"
langchain-community = "0.0.32"
langchain-openai = "0.1.3"
requests = "2.31.0"
tiktoken = "0.6.0"
azure-storage-queue = "12.9.0"
beautifulsoup4 = "4.12.3"
fake-useragent = "1.5.1"
chardet = "5.2.0"
azure-search-documents = "11.4.0"
azure-ai-contentsafety = "1.0.0"
python-docx = "1.1.0"
azure-keyvault-secrets = "4.8.0"
pandas = "2.2.2"
azure-monitor-opentelemetry = "^1.4.0"
opentelemetry-instrumentation-httpx = "^0.45b0"
pillow = "10.3.0"
azure-mgmt-cognitiveservices = "^13.5.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "5.0.0"
flake8 = "7.0.0"
black = "24.4.0"
pre-commit = "3.7.0"
pytest_httpserver = "1.0.10"
trustme = "1.1.0"
[tool.coverage.run]
omit = [
"code/tests/*",
]
[tool.coverage.report]
skip_empty = true
include_namespace_packages = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"