mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
14 lines
227 B
Python
14 lines
227 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='invoke-ai',
|
|
version='2.0.0',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
)
|