mirror of
https://github.com/Stability-AI/stablediffusion.git
synced 2025-01-05 14:18:19 +00:00
bfef096e9b
Reformat project using Black
13 lines
234 B
Python
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",
|
|
],
|
|
)
|