File size: 615 Bytes
3520a83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "catalog-vlm-inference"
version = "0.1.0"
description = "Minimal inference environment for CQM VLM (vLLM + Qwen3.5)"
requires-python = ">=3.11,<3.12"
dependencies = [
    "vllm==0.19.1",
    "transformers>=5.0.0",
    "qwen_vl_utils>=0.0.14",
    "decord>=0.6.0",
    "pyyaml>=6.0",
    "jsonlines>=4.0.0",
    "requests>=2.32.5",
    "tqdm>=4.67.1",
    "torchvision",
    "nvidia-nccl-cu12==2.28.3",
]

[tool.hatch.build.targets.wheel]
packages = ["src"]

[[tool.uv.index]]
url = "https://pypi.org/simple"
default = true