| [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" | |