-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 916 Bytes
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
[tool.poetry]
name = "function-calling-data-synthesizer"
version = "0.1.0"
description = ""
authors = ["Kosuke Fujimoto <kofuji@microsoft.com>"]
package-mode = false
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.5.1"
pytest = "^9.0.2"
ruff = "^0.15.4"
mypy = "^1.19.1"
pytest-cov = "^7.0.0"
ipykernel = "^7.2.0"
pytest-mock = "^3.15.1"
[tool.poetry.dependencies]
python = "=3.12.9"
types-pyyaml = "^6.0.12.20250915"
python-dotenv = "^1.2.1"
tenacity = "^9.1.4"
pyyaml = "^6.0.3"
azure-ai-inference = "^1.0.0b6"
azure-core = "^1.38.2"
asyncio = "^4.0.0"
aiohttp = "^3.13.4"
jsonlines = "^4.0.0"
tqdm = "^4.67.3"
scikit-learn = "^1.8.0"
azure-ai-ml = "^1.31.0"
azure-identity = "^1.25.2"
pytest-asyncio = "^1.3.0"
azureml-mlflow = "^1.62.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath="src"
[tool.coverage.run]
omit = [
# ignore all tests in src
"*/tests/*",
"**/__init__.py"
]