StableDiffusion/setup.py
Andres Caicedo bfef096e9b
Apply Black to reformat Python project
Reformat project using Black
2023-05-08 13:15:14 +02:00

13 lines
234 B
Python

from setuptools import setup, find_packages
setup(
name="stable-diffusion",
version="0.0.1",
description="",
packages=find_packages(),
install_requires=[
"torch",
"numpy",
"tqdm",
],
)