ollamadiffuser 1.1.3__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.
Files changed (38) hide show
  1. {ollamadiffuser-1.1.3/ollamadiffuser.egg-info → ollamadiffuser-1.1.4}/PKG-INFO +21 -3
  2. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/README.md +16 -0
  3. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/__init__.py +1 -1
  4. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4/ollamadiffuser.egg-info}/PKG-INFO +21 -3
  5. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/requires.txt +5 -2
  6. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/pyproject.toml +6 -3
  7. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/setup.py +4 -15
  8. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/CHANGELOG.md +0 -0
  9. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/LICENSE +0 -0
  10. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/MANIFEST.in +0 -0
  11. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/__main__.py +0 -0
  12. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/api/__init__.py +0 -0
  13. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/api/server.py +0 -0
  14. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/__init__.py +0 -0
  15. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/commands.py +0 -0
  16. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/cli/main.py +0 -0
  17. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/__init__.py +0 -0
  18. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/config/__init__.py +0 -0
  19. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/config/settings.py +0 -0
  20. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/inference/__init__.py +0 -0
  21. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/inference/engine.py +0 -0
  22. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/models/__init__.py +0 -0
  23. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/models/manager.py +0 -0
  24. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/__init__.py +0 -0
  25. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/controlnet_preprocessors.py +0 -0
  26. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/download_utils.py +0 -0
  27. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/core/utils/lora_manager.py +0 -0
  28. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/__init__.py +0 -0
  29. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/templates/index.html +0 -0
  30. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/ui/web.py +0 -0
  31. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser/utils/__init__.py +0 -0
  32. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/SOURCES.txt +0 -0
  33. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/dependency_links.txt +0 -0
  34. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/entry_points.txt +0 -0
  35. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/not-zip-safe +0 -0
  36. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/ollamadiffuser.egg-info/top_level.txt +0 -0
  37. {ollamadiffuser-1.1.3 → ollamadiffuser-1.1.4}/requirements.txt +0 -0
  38. {ollamadiffuser-1.1.3 → 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
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: controlnet-aux>=0.0.7
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.3"
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
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: controlnet-aux>=0.0.7
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
- controlnet-aux>=0.0.7
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.3"
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
- "controlnet-aux>=0.0.7",
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"
@@ -37,20 +37,12 @@ REQUIRED = [
37
37
  "numpy>=1.21.0",
38
38
  ]
39
39
 
40
- # Optional dependencies that can fall back gracefully
41
- OPTIONAL = [
40
+ # Optional dependencies for [full] installation
41
+ FULL_EXTRAS = [
42
42
  "controlnet-aux>=0.0.7",
43
43
  "opencv-python>=4.8.0",
44
44
  ]
45
45
 
46
- # Try to install optional dependencies, but don't fail if they can't be installed
47
- install_requires = REQUIRED[:]
48
- for dep in OPTIONAL:
49
- try:
50
- install_requires.append(dep)
51
- except Exception:
52
- print(f"Warning: Optional dependency {dep} could not be added to requirements")
53
-
54
46
  setup(
55
47
  name="ollamadiffuser",
56
48
  version=get_version(),
@@ -75,7 +67,7 @@ setup(
75
67
  "Topic :: Multimedia :: Graphics",
76
68
  ],
77
69
  python_requires=">=3.10",
78
- install_requires=install_requires,
70
+ install_requires=REQUIRED,
79
71
  extras_require={
80
72
  "dev": [
81
73
  "pytest>=7.0.0",
@@ -84,10 +76,7 @@ setup(
84
76
  "isort>=5.12.0",
85
77
  "flake8>=6.0.0",
86
78
  ],
87
- "full": [
88
- "controlnet-aux>=0.0.7",
89
- "opencv-python>=4.8.0",
90
- ],
79
+ "full": FULL_EXTRAS,
91
80
  },
92
81
  entry_points={
93
82
  "console_scripts": [
File without changes
File without changes