CoolFace
Modelpublic

Montey/python-edge

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
pyproject.toml32 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools >= 61.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "edge-maxxing-4090-newdream"7description = "An edge-maxxing model submission for the 4090 newdream contest"8requires-python = ">=3.10,<3.11"9version = "6"10dependencies = [11    "diffusers==0.28.2",12    "onediff==1.2.0",13    "onediffx==1.2.0",14    "oneflow",15    "numpy==1.26.4",16    "xformers==0.0.25.post1",17    "triton==2.2.0",18    "transformers==4.41.2",19    "accelerate==0.31.0",20    "omegaconf==2.3.0",21    "torch==2.2.2",22    "torchvision==0.17.2",23    "huggingface_hub==0.24.7",24    "setuptools==75.2.0",25    "edge-maxxing-pipelines @ git+https://github.com/womboai/edge-maxxing#subdirectory=pipelines",26]27 28[tool.uv.sources]29oneflow = { url = "https://github.com/siliconflow/oneflow_releases/releases/download/community_cu118/oneflow-0.9.1.dev20240802%2Bcu118-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }30 31[project.scripts]32start_inference = "main:main"