carloscar/stable-diffusion-webui-controlnet-docker
31
1[tool.poetry]2name = "stable-diffusion-webui-docker"3version = "0"4repository = "https://github.com/kalaspuff/stable-diffusion-webui-controlnet-docker"5homepage = "https://huggingface.co/spaces/carloscar/stable-diffusion-webui-controlnet-docker"6description = "Build configuration for Docker to set up AUTOMATIC1111's Stable Diffusion WebUI + Mikubill's ControlNet extension to run on a GPU-enabled server."7authors = ["Carl Oscar Aaro <hello@carloscar.com"]8 9[tool.poetry.dependencies]10python = ">=3.10,<3.11"11triton = { version = ">=2.0.0a2", allow-prereleases = true, markers = "platform_machine == 'x86_64' and platform_system == 'Linux'" }12torch = { url = "https://download.pytorch.org/whl/cu117/torch-1.13.1%2Bcu117-cp310-cp310-linux_x86_64.whl" }13torchvision = { url = "https://download.pytorch.org/whl/cu117/torchvision-0.14.1%2Bcu117-cp310-cp310-linux_x86_64.whl" }14numexpr = { version = "^2.8.0" }15 