mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
8cd5d95b8a
- this required an update to the invoke-ai fork of gfpgan - simultaneously reverted consolidation of environment and requirements files, as their presence in a directory triggered setup.py to try to install a sub-package.
15 lines
269 B
Python
15 lines
269 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='invoke-ai',
|
|
version='2.1.3',
|
|
description='InvokeAI text to image generation toolkit',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
)
|
|
|