-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.29 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 = "privacy-helper"
version = "0.0.0"
description = "Privacy Helper"
authors = ["Microsoft <[email protected]>"]
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.12.4,<3.13"
teams-ai = "^1.3.0"
python-dotenv = "^1.0.1"
aiohttp = "3.9.5"
pyautogen = {version="0.2.35", extras=["llm", "retrievechat"]}
azure-identity = "^1.17.1"
pillow = "10.3.0"
azure-search-documents = "^11.5.0"
azure-core = "^1.30.2"
drawsvg = {extras = ["all"], version = "^2.4.0"}
svgpathtools = "^1.6.1"
azure-cosmos = "^4.7.0"
instructor = "^1.4.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylint = "^2.17.4"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
black = "^24.3.0"
isort = "^5.12.0"
mypy = "^1.5.0"
[tool.poetry.scripts]
lint = "scripts:lint"
fmt = "scripts:fmt"
test = "scripts:test"
clean = "scripts:clean"
ci = "scripts:ci"
start = "scripts:start"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--cov-report html:coverage --cov=src"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
show_error_codes = true
no_implicit_optional = true
warn_unused_ignores = true