ollamadiffuser 1.1.2__tar.gz → 1.1.4__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.4}/PKG-INFO +21 -3
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/README.md +16 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/__init__.py +1 -1
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4/ollamadiffuser.egg-info}/PKG-INFO +21 -3
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/requires.txt +5 -2
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/pyproject.toml +6 -3
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/setup.py +15 -16
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/CHANGELOG.md +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/LICENSE +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/MANIFEST.in +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/__main__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/api/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/api/server.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/commands.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/main.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/config/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/config/settings.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/inference/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/inference/engine.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/models/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/models/manager.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/controlnet_preprocessors.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/download_utils.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/lora_manager.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/templates/index.html +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/web.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser/utils/__init__.py +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/SOURCES.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/dependency_links.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/entry_points.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/not-zip-safe +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/top_level.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/requirements.txt +0 -0
- {ollamadiffuser-1.1.2 → ollamadiffuser-1.1.4}/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.4
|
|
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
|
|
@@ -51,14 +51,16 @@ Requires-Dist: python-multipart>=0.0.0
|
|
|
51
51
|
Requires-Dist: psutil>=5.9.0
|
|
52
52
|
Requires-Dist: jinja2>=3.0.0
|
|
53
53
|
Requires-Dist: peft>=0.10.0
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist: opencv-python>=4.8.0
|
|
54
|
+
Requires-Dist: numpy>=1.21.0
|
|
56
55
|
Provides-Extra: dev
|
|
57
56
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
58
57
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
59
58
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
60
59
|
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
61
60
|
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
|
61
|
+
Provides-Extra: full
|
|
62
|
+
Requires-Dist: controlnet-aux>=0.0.7; extra == "full"
|
|
63
|
+
Requires-Dist: opencv-python>=4.8.0; extra == "full"
|
|
62
64
|
Dynamic: author
|
|
63
65
|
Dynamic: home-page
|
|
64
66
|
Dynamic: license-file
|
|
@@ -408,7 +410,14 @@ pip install opencv-python>=4.8.0
|
|
|
408
410
|
ollamadiffuser verify-deps
|
|
409
411
|
|
|
410
412
|
# Or install with all optional dependencies
|
|
413
|
+
# For bash/sh:
|
|
411
414
|
pip install ollamadiffuser[full]
|
|
415
|
+
|
|
416
|
+
# For zsh (macOS default):
|
|
417
|
+
pip install "ollamadiffuser[full]"
|
|
418
|
+
|
|
419
|
+
# For fish shell:
|
|
420
|
+
pip install 'ollamadiffuser[full]'
|
|
412
421
|
```
|
|
413
422
|
|
|
414
423
|
#### Complete Dependency Check
|
|
@@ -426,8 +435,17 @@ If you're having persistent issues:
|
|
|
426
435
|
```bash
|
|
427
436
|
# Uninstall and reinstall
|
|
428
437
|
pip uninstall ollamadiffuser
|
|
438
|
+
|
|
439
|
+
# Reinstall with all dependencies (shell-specific syntax):
|
|
440
|
+
# For bash/sh:
|
|
429
441
|
pip install --no-cache-dir ollamadiffuser[full]
|
|
430
442
|
|
|
443
|
+
# For zsh (macOS default):
|
|
444
|
+
pip install --no-cache-dir "ollamadiffuser[full]"
|
|
445
|
+
|
|
446
|
+
# For fish shell:
|
|
447
|
+
pip install --no-cache-dir 'ollamadiffuser[full]'
|
|
448
|
+
|
|
431
449
|
# Verify installation
|
|
432
450
|
ollamadiffuser verify-deps
|
|
433
451
|
```
|
|
@@ -342,7 +342,14 @@ pip install opencv-python>=4.8.0
|
|
|
342
342
|
ollamadiffuser verify-deps
|
|
343
343
|
|
|
344
344
|
# Or install with all optional dependencies
|
|
345
|
+
# For bash/sh:
|
|
345
346
|
pip install ollamadiffuser[full]
|
|
347
|
+
|
|
348
|
+
# For zsh (macOS default):
|
|
349
|
+
pip install "ollamadiffuser[full]"
|
|
350
|
+
|
|
351
|
+
# For fish shell:
|
|
352
|
+
pip install 'ollamadiffuser[full]'
|
|
346
353
|
```
|
|
347
354
|
|
|
348
355
|
#### Complete Dependency Check
|
|
@@ -360,8 +367,17 @@ If you're having persistent issues:
|
|
|
360
367
|
```bash
|
|
361
368
|
# Uninstall and reinstall
|
|
362
369
|
pip uninstall ollamadiffuser
|
|
370
|
+
|
|
371
|
+
# Reinstall with all dependencies (shell-specific syntax):
|
|
372
|
+
# For bash/sh:
|
|
363
373
|
pip install --no-cache-dir ollamadiffuser[full]
|
|
364
374
|
|
|
375
|
+
# For zsh (macOS default):
|
|
376
|
+
pip install --no-cache-dir "ollamadiffuser[full]"
|
|
377
|
+
|
|
378
|
+
# For fish shell:
|
|
379
|
+
pip install --no-cache-dir 'ollamadiffuser[full]'
|
|
380
|
+
|
|
365
381
|
# Verify installation
|
|
366
382
|
ollamadiffuser verify-deps
|
|
367
383
|
```
|
|
@@ -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.4"
|
|
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.4
|
|
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
|
|
@@ -51,14 +51,16 @@ Requires-Dist: python-multipart>=0.0.0
|
|
|
51
51
|
Requires-Dist: psutil>=5.9.0
|
|
52
52
|
Requires-Dist: jinja2>=3.0.0
|
|
53
53
|
Requires-Dist: peft>=0.10.0
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist: opencv-python>=4.8.0
|
|
54
|
+
Requires-Dist: numpy>=1.21.0
|
|
56
55
|
Provides-Extra: dev
|
|
57
56
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
58
57
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
59
58
|
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
60
59
|
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
61
60
|
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
|
61
|
+
Provides-Extra: full
|
|
62
|
+
Requires-Dist: controlnet-aux>=0.0.7; extra == "full"
|
|
63
|
+
Requires-Dist: opencv-python>=4.8.0; extra == "full"
|
|
62
64
|
Dynamic: author
|
|
63
65
|
Dynamic: home-page
|
|
64
66
|
Dynamic: license-file
|
|
@@ -408,7 +410,14 @@ pip install opencv-python>=4.8.0
|
|
|
408
410
|
ollamadiffuser verify-deps
|
|
409
411
|
|
|
410
412
|
# Or install with all optional dependencies
|
|
413
|
+
# For bash/sh:
|
|
411
414
|
pip install ollamadiffuser[full]
|
|
415
|
+
|
|
416
|
+
# For zsh (macOS default):
|
|
417
|
+
pip install "ollamadiffuser[full]"
|
|
418
|
+
|
|
419
|
+
# For fish shell:
|
|
420
|
+
pip install 'ollamadiffuser[full]'
|
|
412
421
|
```
|
|
413
422
|
|
|
414
423
|
#### Complete Dependency Check
|
|
@@ -426,8 +435,17 @@ If you're having persistent issues:
|
|
|
426
435
|
```bash
|
|
427
436
|
# Uninstall and reinstall
|
|
428
437
|
pip uninstall ollamadiffuser
|
|
438
|
+
|
|
439
|
+
# Reinstall with all dependencies (shell-specific syntax):
|
|
440
|
+
# For bash/sh:
|
|
429
441
|
pip install --no-cache-dir ollamadiffuser[full]
|
|
430
442
|
|
|
443
|
+
# For zsh (macOS default):
|
|
444
|
+
pip install --no-cache-dir "ollamadiffuser[full]"
|
|
445
|
+
|
|
446
|
+
# For fish shell:
|
|
447
|
+
pip install --no-cache-dir 'ollamadiffuser[full]'
|
|
448
|
+
|
|
431
449
|
# Verify installation
|
|
432
450
|
ollamadiffuser verify-deps
|
|
433
451
|
```
|
|
@@ -16,8 +16,7 @@ python-multipart>=0.0.0
|
|
|
16
16
|
psutil>=5.9.0
|
|
17
17
|
jinja2>=3.0.0
|
|
18
18
|
peft>=0.10.0
|
|
19
|
-
|
|
20
|
-
opencv-python>=4.8.0
|
|
19
|
+
numpy>=1.21.0
|
|
21
20
|
|
|
22
21
|
[dev]
|
|
23
22
|
pytest>=7.0.0
|
|
@@ -25,3 +24,7 @@ pytest-asyncio>=0.21.0
|
|
|
25
24
|
black>=23.0.0
|
|
26
25
|
isort>=5.12.0
|
|
27
26
|
flake8>=6.0.0
|
|
27
|
+
|
|
28
|
+
[full]
|
|
29
|
+
controlnet-aux>=0.0.7
|
|
30
|
+
opencv-python>=4.8.0
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ollamadiffuser"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.4"
|
|
8
8
|
authors = [
|
|
9
9
|
{name = "OllamaDiffuser Team", email = "ollamadiffuser@gmail.com"}
|
|
10
10
|
]
|
|
@@ -62,8 +62,7 @@ dependencies = [
|
|
|
62
62
|
"psutil>=5.9.0",
|
|
63
63
|
"jinja2>=3.0.0",
|
|
64
64
|
"peft>=0.10.0",
|
|
65
|
-
"
|
|
66
|
-
"opencv-python>=4.8.0",
|
|
65
|
+
"numpy>=1.21.0",
|
|
67
66
|
]
|
|
68
67
|
|
|
69
68
|
[project.optional-dependencies]
|
|
@@ -74,6 +73,10 @@ dev = [
|
|
|
74
73
|
"isort>=5.12.0",
|
|
75
74
|
"flake8>=6.0.0",
|
|
76
75
|
]
|
|
76
|
+
full = [
|
|
77
|
+
"controlnet-aux>=0.0.7",
|
|
78
|
+
"opencv-python>=4.8.0",
|
|
79
|
+
]
|
|
77
80
|
|
|
78
81
|
[project.scripts]
|
|
79
82
|
ollamadiffuser = "ollamadiffuser.__main__:main"
|
|
@@ -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()
|
|
@@ -27,23 +37,15 @@ REQUIRED = [
|
|
|
27
37
|
"numpy>=1.21.0",
|
|
28
38
|
]
|
|
29
39
|
|
|
30
|
-
# Optional dependencies
|
|
31
|
-
|
|
40
|
+
# Optional dependencies for [full] installation
|
|
41
|
+
FULL_EXTRAS = [
|
|
32
42
|
"controlnet-aux>=0.0.7",
|
|
33
43
|
"opencv-python>=4.8.0",
|
|
34
44
|
]
|
|
35
45
|
|
|
36
|
-
# Try to install optional dependencies, but don't fail if they can't be installed
|
|
37
|
-
install_requires = REQUIRED[:]
|
|
38
|
-
for dep in OPTIONAL:
|
|
39
|
-
try:
|
|
40
|
-
install_requires.append(dep)
|
|
41
|
-
except Exception:
|
|
42
|
-
print(f"Warning: Optional dependency {dep} could not be added to requirements")
|
|
43
|
-
|
|
44
46
|
setup(
|
|
45
47
|
name="ollamadiffuser",
|
|
46
|
-
version=
|
|
48
|
+
version=get_version(),
|
|
47
49
|
author="OllamaDiffuser Team",
|
|
48
50
|
author_email="ollamadiffuser@gmail.com",
|
|
49
51
|
description="🎨 Ollama-like image generation model management tool with LoRA support",
|
|
@@ -65,7 +67,7 @@ setup(
|
|
|
65
67
|
"Topic :: Multimedia :: Graphics",
|
|
66
68
|
],
|
|
67
69
|
python_requires=">=3.10",
|
|
68
|
-
install_requires=
|
|
70
|
+
install_requires=REQUIRED,
|
|
69
71
|
extras_require={
|
|
70
72
|
"dev": [
|
|
71
73
|
"pytest>=7.0.0",
|
|
@@ -74,10 +76,7 @@ setup(
|
|
|
74
76
|
"isort>=5.12.0",
|
|
75
77
|
"flake8>=6.0.0",
|
|
76
78
|
],
|
|
77
|
-
"full":
|
|
78
|
-
"controlnet-aux>=0.0.7",
|
|
79
|
-
"opencv-python>=4.8.0",
|
|
80
|
-
],
|
|
79
|
+
"full": FULL_EXTRAS,
|
|
81
80
|
},
|
|
82
81
|
entry_points={
|
|
83
82
|
"console_scripts": [
|
|
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.4}/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
|