Lincoln Stein 2ec9792f50 fix clipseg model loading
- 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.
2022-11-15 19:17:14 +00:00

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',
],
)