StableDiffusion/setup.py

14 lines
234 B
Python
Raw Normal View History

from setuptools import find_packages, setup
2022-11-24 00:22:28 +00:00
setup(
name="stable-diffusion",
version="0.0.1",
description="",
2022-11-24 00:22:28 +00:00
packages=find_packages(),
install_requires=[
"torch",
"numpy",
"tqdm",
2022-11-24 00:22:28 +00:00
],
)