StableDiffusion/setup.py
Andres Caicedo 65bc154be0
Apply Isort to reformat Python project
Reformat project using Isort
2023-05-08 13:16:07 +02:00

13 lines
234 B
Python

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