-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.21 KB
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
[tool.poetry]
name = "promptflow-tool-semantic-kernel"
version = "0.2.3"
description = ""
authors = ["Fabian Schurig <fabian.a.schurig@gmail.com>"]
readme = "README.md"
packages = [
{ include = "promptflow_tool_semantic_kernel" }
]
include = ["**/*.yaml", "**/*.yml"]
license = "AGPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
promptflow = "^1.17.2"
semantic-kernel = "^1.22.0"
keyrings-alt = "^5.0.2"
promptflow-tracing = "^1.17.2"
fastapi = "^0.115.10"
uvicorn = "^0.34.0"
google-generativeai = "^0.8.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
yapf = "^0.43.0"
pytest-asyncio = "^0.25.3"
pytest-mock = "^3.14.0"
promptflow-tracing = "^1.17.2"
opentelemetry-instrumentation-fastapi = "^0.51b0"
pre-commit = "^4.1.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core", "pyyaml"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.poetry.build]
script = "build.py"
[tool.poetry.plugins."package_tools"]
semantic-kernel-tool = "promptflow_tool_semantic_kernel.tools.utils:list_package_tools"