mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-14 22:13:41 +03:00
010b27ce9a
* repo-merge * cutdown size * Create setup.py * webui.cmd * ldm * Update environment.yaml * Update environment.yaml
13 lines
233 B
Python
13 lines
233 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='latent-diffusion',
|
|
version='0.0.1',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
) |