generated from ks6088ts/template-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
109 lines (92 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[tool.poetry]
name = "azure-ai-services-solutions"
version = "0.1.0"
description = "A GitHub template repository for a Python"
authors = ["ks6088ts <ks6088ts@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.12.3"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
ruff = "^0.4.8"
black = "^24.4.0"
pytest = "^8.2.2"
coverage = "^7.4.4"
pytest-cov = "^5.0.0"
[tool.poetry.group.backend.dependencies]
fastapi = "^0.110.3"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
openai = "^1.25.0"
azure-identity = "^1.16.1"
pydantic-settings = "^2.2.1"
azure-ai-documentintelligence = "^1.0.0b3"
python-multipart = "^0.0.9"
azure-storage-blob = "^12.19.1"
azure-ai-vision-imageanalysis = "^1.0.0b2"
azure-eventgrid = "^4.19.0"
azure-storage-queue = "^12.9.0"
azure-cosmos = "^4.6.1"
langchain = "^0.2.2"
langchain-openai = "^0.1.8"
langchain-community = "^0.2.5"
langsmith = "^0.1.75"
langgraph = "^0.0.65"
yfinance = "^0.2.40"
azure-iot-device = "^2.13.1"
azure-iot-hub = "^2.6.1"
[tool.poetry.group.frontend.dependencies]
streamlit = "^1.36.0"
aiohttp = {extras = ["speedups"], version = "^3.9.5"}
microsoft-kiota-abstractions = "^1.3.2"
microsoft-kiota-authentication-azure = "^1.0.0"
microsoft-kiota-http = "^1.3.1"
microsoft-kiota-serialization-form = "^0.1.0"
microsoft-kiota-serialization-json = "^1.2.0"
microsoft-kiota-serialization-multipart = "^0.1.0"
microsoft-kiota-serialization-text = "^1.0.0"
streamlit-audiorecorder = "^0.0.5"
openai = "^1.30.5"
langchain = "^0.2.11"
langchain-openai = "^0.1.19"
langchain-community = "^0.2.10"
youtube-transcript-api = "^0.6.2"
pytube = "^15.0.0"
duckduckgo-search = "^6.2.3"
azure-search-documents = "^11.5.0"
[tool.poetry.group.azure-functions.dependencies]
azure-functions = "^1.19.0"
[tool.poetry.group.scripts.dependencies]
pymupdf = "^1.24.7"
faiss-cpu = "^1.8.0.post1"
langchain = "^0.2.10"
langchain-openai = "^0.1.17"
langchain-community = "^0.2.9"
pandas = "^2.2.2"
azure-search-documents = "^11.5.0"
azure-cosmos = "^4.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = ["client"]
respect-gitignore = true
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["D203"]
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.isort]
skip_glob = ["client/*"]
[tool.pytest.ini_options]
addopts = "-ra --cov"
testpaths = ["tests"]
pythonpath = ['.']
[tool.coverage.report]
show_missing = true