sygil-webui/setup.py
Thomas Mello 8039021b53 refactor: sort out dependencies
Co-Authored-By: oc013 <101832295+oc013@users.noreply.github.com>
Co-Authored-By: Aarni Koskela <akx@iki.fi>
Co-Authored-By: oc013 <101832295+oc013@users.noreply.github.com>
Co-Authored-By: Aarni Koskela <akx@iki.fi>
2022-09-11 04:33:43 +03:00

13 lines
225 B
Python

from setuptools import setup, find_packages
setup(
name='sd-webui',
version='0.0.1',
description='',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)