mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-14 23:02:00 +03:00
8039021b53
Co-Authored-By: oc013 <101832295+oc013@users.noreply.github.com> Co-Authored-By: Aarni Koskela <akx@iki.fi> Co-Authored-By: oc013 <101832295+oc013@users.noreply.github.com> Co-Authored-By: Aarni Koskela <akx@iki.fi>
13 lines
225 B
Python
13 lines
225 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='sd-webui',
|
|
version='0.0.1',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
) |