mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-12 12:09:33 +03:00
a9bc7eae19
for more information, see https://pre-commit.ci
14 lines
229 B
Python
14 lines
229 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",
|
|
],
|
|
)
|