24 lines
434 B
TOML
24 lines
434 B
TOML
[project]
|
|
name = "local-llm-inference-engine"
|
|
version = "0.1.0"
|
|
description = "Inference Engine for Local LLM Agent"
|
|
requires-python = ">=3.11"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py311']
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
select = ["E", "F", "I", "W"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
strict = true
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|