pixelification 1.2.1__tar.gz → 1.2.2__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 (30) hide show
  1. {pixelification-1.2.1 → pixelification-1.2.2}/PKG-INFO +1 -1
  2. pixelification-1.2.2/requirements.txt +20 -0
  3. {pixelification-1.2.1 → pixelification-1.2.2}/uv.lock +11 -6
  4. pixelification-1.2.1/requirements.txt +0 -6
  5. {pixelification-1.2.1 → pixelification-1.2.2}/.github/workflows/publish.yml +0 -0
  6. {pixelification-1.2.1 → pixelification-1.2.2}/.gitignore +0 -0
  7. {pixelification-1.2.1 → pixelification-1.2.2}/.python-version +0 -0
  8. {pixelification-1.2.1 → pixelification-1.2.2}/Cargo.lock +0 -0
  9. {pixelification-1.2.1 → pixelification-1.2.2}/Cargo.toml +0 -0
  10. {pixelification-1.2.1 → pixelification-1.2.2}/README.md +0 -0
  11. {pixelification-1.2.1 → pixelification-1.2.2}/main.py +0 -0
  12. {pixelification-1.2.1 → pixelification-1.2.2}/pyproject.toml +0 -0
  13. {pixelification-1.2.1 → pixelification-1.2.2}/src/app/mod.rs +0 -0
  14. {pixelification-1.2.1 → pixelification-1.2.2}/src/config/mod.rs +0 -0
  15. {pixelification-1.2.1 → pixelification-1.2.2}/src/drag/mod.rs +0 -0
  16. {pixelification-1.2.1 → pixelification-1.2.2}/src/events/mod.rs +0 -0
  17. {pixelification-1.2.1 → pixelification-1.2.2}/src/main.rs +0 -0
  18. {pixelification-1.2.1 → pixelification-1.2.2}/src/pixelification/__init__.py +0 -0
  19. {pixelification-1.2.1 → pixelification-1.2.2}/src/pixelification/main.py +0 -0
  20. {pixelification-1.2.1 → pixelification-1.2.2}/src/pixelification/runtime.py +0 -0
  21. {pixelification-1.2.1 → pixelification-1.2.2}/src/state/mod.rs +0 -0
  22. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/animated.rs +0 -0
  23. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/bitmap.rs +0 -0
  24. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/brush.rs +0 -0
  25. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/color.rs +0 -0
  26. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/font.rs +0 -0
  27. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/mod.rs +0 -0
  28. {pixelification-1.2.1 → pixelification-1.2.2}/src/ui/render.rs +0 -0
  29. {pixelification-1.2.1 → pixelification-1.2.2}/src/webview/mod.rs +0 -0
  30. {pixelification-1.2.1 → pixelification-1.2.2}/src/win32.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pixelification
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: Pixel Rearrangement Tool — Keyboard-Navigated Terminal UI
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: numpy>=1.20.0
@@ -0,0 +1,20 @@
1
+ prompt-toolkit>=3.0.0
2
+ opencv-python>=4.0.0
3
+ numpy>=1.20.0
4
+
5
+ # ── Developer Notes ─────────────────────────────────────────────────
6
+ #
7
+ # pip install -r requirements.txt → base deps only (no GPU)
8
+ # pip install -e . → base deps only (no GPU)
9
+ # pip install -e ".[cuda]" → includes CuPy + NVIDIA libs
10
+ #
11
+ # uv sync → base deps only
12
+ # uv sync --extra cuda → includes CuPy + NVIDIA libs
13
+ # uv sync --all-extras → includes CuPy + NVIDIA libs
14
+ #
15
+ # CuPy / NVIDIA packages are ONLY installed when the 'cuda' extra is
16
+ # explicitly requested. Users without an NVIDIA GPU should NOT use
17
+ # the [cuda] extra.
18
+ #
19
+ # ── Optional — CUDA acceleration (NVIDIA GPU required) ──────────────
20
+ # cupy-cuda13x[ctk]
@@ -58,9 +58,9 @@ name = "cupy-cuda13x"
58
58
  version = "14.1.0"
59
59
  source = { registry = "https://pypi.org/simple" }
60
60
  dependencies = [
61
- { name = "cuda-pathfinder", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
62
- { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and sys_platform == 'linux') or (python_full_version < '3.11' and sys_platform == 'win32')" },
63
- { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and sys_platform == 'linux') or (python_full_version >= '3.11' and sys_platform == 'win32')" },
61
+ { name = "cuda-pathfinder" },
62
+ { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" },
63
+ { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" },
64
64
  ]
65
65
  wheels = [
66
66
  { url = "https://files.pythonhosted.org/packages/18/e9/19185f325905eada94ed96f649a2b92336dcb6caa62a5adac514bb2f0de5/cupy_cuda13x-14.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:80f169592f5bbf7cb411ce4eeda315d06addb1a3cb14ed668e9d2ba287e3e4d4", size = 72670820, upload-time = "2026-05-23T01:11:17.547Z" },
@@ -84,7 +84,7 @@ wheels = [
84
84
 
85
85
  [package.optional-dependencies]
86
86
  ctk = [
87
- { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "curand", "cusolver", "cusparse", "nvrtc"], marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
87
+ { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "curand", "cusolver", "cusparse", "nvrtc"] },
88
88
  ]
89
89
 
90
90
  [[package]]
@@ -353,20 +353,25 @@ wheels = [
353
353
  name = "pixelification"
354
354
  source = { editable = "." }
355
355
  dependencies = [
356
- { name = "cupy-cuda13x", extra = ["ctk"], marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
357
356
  { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" },
358
357
  { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" },
359
358
  { name = "opencv-python" },
360
359
  { name = "prompt-toolkit" },
361
360
  ]
362
361
 
362
+ [package.optional-dependencies]
363
+ cuda = [
364
+ { name = "cupy-cuda13x", extra = ["ctk"] },
365
+ ]
366
+
363
367
  [package.metadata]
364
368
  requires-dist = [
365
- { name = "cupy-cuda13x", extras = ["ctk"], marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
369
+ { name = "cupy-cuda13x", extras = ["ctk"], marker = "extra == 'cuda'" },
366
370
  { name = "numpy", specifier = ">=1.20.0" },
367
371
  { name = "opencv-python", specifier = ">=4.0.0" },
368
372
  { name = "prompt-toolkit", specifier = ">=3.0.0" },
369
373
  ]
374
+ provides-extras = ["cuda"]
370
375
 
371
376
  [[package]]
372
377
  name = "prompt-toolkit"
@@ -1,6 +0,0 @@
1
- prompt-toolkit>=3.0.0
2
- opencv-python>=4.0.0
3
- numpy>=1.20.0
4
-
5
- # Optional — CUDA acceleration (NVIDIA GPU required)
6
- # cupy-cuda13x[ctk]
File without changes
File without changes