ollamadiffuser 1.1.2__tar.gz → 1.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ollamadiffuser-1.1.2/ollamadiffuser.egg-info → ollamadiffuser-1.1.3}/PKG-INFO +1 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/__init__.py +1 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3/ollamadiffuser.egg-info}/PKG-INFO +1 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/pyproject.toml +1 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/setup.py +11 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/CHANGELOG.md +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/LICENSE +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/MANIFEST.in +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/README.md +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/__main__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/api/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/api/server.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/cli/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/cli/commands.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/cli/main.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/config/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/config/settings.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/inference/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/inference/engine.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/models/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/models/manager.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/utils/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/utils/controlnet_preprocessors.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/utils/download_utils.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/utils/lora_manager.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/ui/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/ui/templates/index.html +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/ui/web.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/utils/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/SOURCES.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/dependency_links.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/entry_points.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/not-zip-safe +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/requires.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser.egg-info/top_level.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/requirements.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ollamadiffuser
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: 🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support
|
|
5
5
|
Home-page: https://github.com/ollamadiffuser/ollamadiffuser
|
|
6
6
|
Author: OllamaDiffuser Team
|
|
@@ -4,7 +4,7 @@ OllamaDiffuser - Local AI Image Generation with Ollama-style CLI
|
|
|
4
4
|
A tool for managing and running Stable Diffusion, FLUX.1, and other AI image generation models locally.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "1.1.
|
|
7
|
+
__version__ = "1.1.3"
|
|
8
8
|
__author__ = "OllamaDiffuser Team"
|
|
9
9
|
__email__ = "ollamadiffuser@gmail.com"
|
|
10
10
|
__description__ = "🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ollamadiffuser
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: 🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support
|
|
5
5
|
Home-page: https://github.com/ollamadiffuser/ollamadiffuser
|
|
6
6
|
Author: OllamaDiffuser Team
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
import sys
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
# Read version from __init__.py
|
|
6
|
+
def get_version():
|
|
7
|
+
init_path = os.path.join(os.path.dirname(__file__), "ollamadiffuser", "__init__.py")
|
|
8
|
+
with open(init_path, "r", encoding="utf-8") as f:
|
|
9
|
+
for line in f:
|
|
10
|
+
if line.startswith("__version__"):
|
|
11
|
+
return line.split("=")[1].strip().strip('"').strip("'")
|
|
12
|
+
raise RuntimeError("Unable to find version string.")
|
|
3
13
|
|
|
4
14
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
15
|
long_description = fh.read()
|
|
@@ -43,7 +53,7 @@ for dep in OPTIONAL:
|
|
|
43
53
|
|
|
44
54
|
setup(
|
|
45
55
|
name="ollamadiffuser",
|
|
46
|
-
version=
|
|
56
|
+
version=get_version(),
|
|
47
57
|
author="OllamaDiffuser Team",
|
|
48
58
|
author_email="ollamadiffuser@gmail.com",
|
|
49
59
|
description="🎨 Ollama-like image generation model management tool with LoRA support",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ollamadiffuser-1.1.2 → ollamadiffuser-1.1.3}/ollamadiffuser/core/utils/controlnet_preprocessors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|