mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
- This fixes the clipseg loading code so that it looks in the root directory for the model. - It also adds several __init__.py files needed to allow InvokeAI to be installed without the -e (editable) flag. This lets you delete the source code directory after installation.
15 lines
269 B
Python
15 lines
269 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='invoke-ai',
|
|
version='2.1.4',
|
|
description='InvokeAI text to image generation toolkit',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
)
|
|
|