pharmapsychotic
2 years ago
14 changed files with 639 additions and 568 deletions
@ -0,0 +1,5 @@ |
|||||||
|
include clip_interrogator/data/artists.txt |
||||||
|
include clip_interrogator/data/flavors.txt |
||||||
|
include clip_interrogator/data/mediums.txt |
||||||
|
include clip_interrogator/data/movements.txt |
||||||
|
include requirements.txt |
File diff suppressed because one or more lines are too long
@ -1 +1,4 @@ |
|||||||
from .interrogate import CLIPInterrogator, Config, LabelTable |
from .clip_interrogator import CLIPInterrogator, Config |
||||||
|
|
||||||
|
__version__ = '0.1.3' |
||||||
|
__author__ = 'pharmapsychotic' |
@ -0,0 +1,3 @@ |
|||||||
|
[build-system] |
||||||
|
requires = ["setuptools"] |
||||||
|
build-backend = "setuptools.build_meta" |
@ -0,0 +1,34 @@ |
|||||||
|
import os |
||||||
|
|
||||||
|
import pkg_resources |
||||||
|
from setuptools import setup, find_packages |
||||||
|
|
||||||
|
setup( |
||||||
|
name="clip-interrogator", |
||||||
|
version="0.1.3", |
||||||
|
license='MIT', |
||||||
|
author='pharmapsychotic', |
||||||
|
author_email='me@pharmapsychotic.com', |
||||||
|
url='https://github.com/pharmapsychotic/clip-interrogator', |
||||||
|
description="Generate a prompt from an image", |
||||||
|
long_description=open('README.md').read(), |
||||||
|
long_description_content_type="text/markdown", |
||||||
|
packages=find_packages(), |
||||||
|
install_requires=[ |
||||||
|
str(r) |
||||||
|
for r in pkg_resources.parse_requirements( |
||||||
|
open(os.path.join(os.path.dirname(__file__), "requirements.txt")) |
||||||
|
) |
||||||
|
], |
||||||
|
include_package_data=True, |
||||||
|
extras_require={'dev': ['pytest']}, |
||||||
|
classifiers=[ |
||||||
|
'Intended Audience :: Developers', |
||||||
|
'Intended Audience :: Science/Research', |
||||||
|
'License :: OSI Approved :: MIT License', |
||||||
|
'Topic :: Education', |
||||||
|
'Topic :: Scientific/Engineering', |
||||||
|
'Topic :: Scientific/Engineering :: Artificial Intelligence', |
||||||
|
], |
||||||
|
keywords=['blip','clip','prompt-engineering','stable-diffusion','text-to-image'], |
||||||
|
) |
Loading…
Reference in new issue