2026-07-06 16:36:27 +02:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "llamacppctl"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "CLI to start, check, stop, and switch llama.cpp Docker server instances with a security-hardened prompt input layer."
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
license = { text = "MIT" }
|
|
|
|
|
authors = [{ name = "Dieter Schlueter" }]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"requests>=2.31,<3",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.4",
|
2026-07-07 10:28:32 +02:00
|
|
|
"ruff>=0.6",
|
|
|
|
|
"mypy>=1.11",
|
|
|
|
|
"types-requests",
|
2026-07-06 16:36:27 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
llamacppctl = "llamacppctl.main:main"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
|
llamacppctl = ["py.typed"]
|
2026-07-07 10:28:32 +02:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
target-version = "py310"
|
|
|
|
|
line-length = 100
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
python_version = "3.10"
|
|
|
|
|
files = ["src/llamacppctl"]
|
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
warn_redundant_casts = true
|