mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-14 14:05:36 +03:00
13 lines
228 B
Python
13 lines
228 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='sygil-webui',
|
|
version='0.0.1',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
) |