generated from ks6088ts/template-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
84 lines (74 loc) · 1.78 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
[tool.poetry]
name = "workshop-azure-openai"
version = "0.1.0"
description = "A GitHub template repository for a Python"
authors = ["ks6088ts <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.51.0"
python-dotenv = "^1.0.1"
streamlit = "^1.38.0"
azure-cosmos = "^4.7.0"
plotly = "^5.24.1"
pandas = "^2.2.2"
langchain = "^0.3.2"
langchain-openai = "^0.2.2"
langchain-ollama = "^0.2.0"
langchain-community = "^0.3.1"
azure-search-documents = "^11.5.1"
azure-identity = "^1.18.0"
ultralytics = "^8.3.6"
mediapipe = "^0.10.14"
azure-ai-documentintelligence = "^1.0.0b4"
azure-storage-blob = "^12.23.1"
requests = "^2.32.3"
opencv-python-headless = "^4.10.0.84"
promptflow = "^1.16.0"
promptflow-evals = "^0.3.2"
langgraph = "^0.2.23"
langchain-chroma = "^0.1.4"
beautifulsoup4 = "^4.12.3"
langgraph-checkpoint-sqlite = "^1.0.4"
playwright = "^1.47.0"
lxml = "^5.3.0"
nest-asyncio = "^1.6.0"
typer = "^0.12.5"
azure-cognitiveservices-speech = "^1.40.0"
openai-whisper = "^20240930"
pymupdf = "^1.24.14"
pydantic = "^2.10.2"
azure-ai-projects = "^1.0.0b2"
azure-ai-inference = "^1.0.0b6"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.0"
ruff = "^0.6.8"
black = "^24.8.0"
pytest = "^8.3.3"
coverage = "^7.6.1"
pytest-cov = "^5.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.40"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [
".jsonl"
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["D203"]
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.pytest.ini_options]
addopts = "-ra --cov"
testpaths = ["tests"]
pythonpath = ['.']
[tool.coverage.report]
show_missing = true