-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.18 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
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "orchestrlm"
version = "0.2.0"
description = "Model-native, local-first multi-model orchestration gateway with an OpenAI-compatible API"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"fastapi>=0.115,<1",
"httpx>=0.28,<1",
"pydantic>=2.10,<3",
"uvicorn[standard]>=0.34,<1",
]
[project.optional-dependencies]
dev = [
"mypy>=1.15,<2",
"pytest>=8.3,<9",
"pytest-asyncio>=0.25,<1",
"pytest-cov>=6,<7",
"ruff>=0.9,<1",
]
[tool.setuptools.packages.find]
include = ["nexus*"]
[tool.pytest.ini_options]
addopts = "-q --strict-markers"
filterwarnings = [
"ignore:Using `httpx` with `starlette.testclient` is deprecated:DeprecationWarning",
]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
exclude = ["examples"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "ASYNC"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true
no_implicit_optional = true
ignore_missing_imports = true
exclude = ["examples/"]