-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.4 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "lfm-model-router"
version = "0.1.0.dev0"
description = "Research framework for sparse cold-start routing across evolving LLM portfolios."
readme = "README.md"
requires-python = ">=3.11,<3.13"
keywords = [
"llm-routing",
"model-routing",
"contextual-bandits",
"liquid-ai",
"machine-learning",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
data = [
"pyarrow>=23,<26",
]
dev = [
"build>=1.2,<2",
"mypy>=1.14,<3",
"pyarrow>=23,<26",
"pytest>=8.3,<10",
"pytest-cov>=6,<8",
"ruff>=0.9,<1",
]
[project.scripts]
lfm-model-router = "lfm_model_router.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/lfm_model_router"]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.mypy]
python_version = "3.11"
strict = true
pretty = true
show_error_codes = true
warn_unreachable = true
files = ["src", "tests"]