39 lines
980 B
TOML
39 lines
980 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "svrnty-vision"
|
|
version = "0.1.0"
|
|
description = "Sovereign vision HTTP gateway — VLM analysis (Qwen3-VL via Ollama), FLUX image gen (ComfyUI), palette extraction (Pillow), background removal (rembg). Standalone; usable by any agent."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "Proprietary" }
|
|
authors = [
|
|
{ name = "Svrnty", email = "mathias@openharbor.io" },
|
|
]
|
|
dependencies = [
|
|
"fastapi>=0.115,<1.0",
|
|
"uvicorn[standard]>=0.32,<1.0",
|
|
"pydantic>=2.9,<3.0",
|
|
"pydantic-settings>=2.6,<3.0",
|
|
"httpx>=0.27,<1.0",
|
|
"Pillow>=11,<13",
|
|
"colorthief>=0.2.1",
|
|
"rembg[cpu]>=2.0,<3.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3,<9.0",
|
|
"pytest-asyncio>=1.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|