File size: 871 Bytes
dbc3c35 70fbcf2 dbc3c35 | 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | [project]
name = "elevenclip-ai-backend"
version = "0.1.0"
description = "FastAPI backend for ElevenClip.AI on AMD ROCm"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.8.0",
"python-multipart>=0.0.9",
"yt-dlp>=2025.1.15",
"celery[redis]>=5.4.0",
"redis>=5.0.0"
]
[project.optional-dependencies]
ai = [
"transformers>=4.47.0",
"accelerate>=1.2.0",
"sentencepiece>=0.2.0",
"safetensors>=0.4.5",
"Pillow>=10.0.0",
"qwen-vl-utils>=0.0.8"
]
rocm-inference = [
"vllm>=0.6.6",
"optimum-amd>=0.1.0; platform_system == 'Linux'"
]
dev = [
"pytest>=8.3.0",
"httpx>=0.27.0",
"ruff>=0.6.0"
]
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app*"]
[tool.ruff]
line-length = 100
target-version = "py311"
|