2026-02-27 07:54:42 +01:00
|
|
|
[build-system]
|
2026-02-27 08:04:54 +01:00
|
|
|
requires = ["setuptools>=42", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2026-02-27 07:54:42 +01:00
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "llm-connect"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Pluggable LLM adapters for OpenRouter, Gemini, OpenAI and Claude Code CLI"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"toml",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["."]
|
|
|
|
|
include = ["llm_connect*"]
|