-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 928 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
46
47
48
49
50
51
52
[project]
name = "tlm-core"
version = "0.1.0"
description = "Core functionality for TLM"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"jsonpath-ng>=1.7.0",
"litellm==1.71.3",
"numpy>=2.1.3",
"openai==1.87.0",
"pydantic>=2.9.2",
]
[tool.pytest]
env_override_existing_values = 1
env_files = [
".env",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.coverage.report]
show_missing = true
fail_under = 90
[tool.ruff]
# The maximum line length that the formatter will allow.
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[dependency-groups]
dev = [
"coverage>=7.6.4",
"pytest>=8.3.3",
"ruff>=0.7.2",
"pre-commit>=4.0.1",
"pytest-asyncio>=0.24.0",
"pytest-dotenv>=0.5.2",
"pytest-profiling>=1.7.0",
"pytest-recording>=0.13.2",
]