mirror of
https://github.com/Stability-AI/stablediffusion.git
synced 2024-12-22 23:55:00 +00:00
65bc154be0
Reformat project using Isort
13 lines
234 B
Python
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",
|
|
],
|
|
)
|