pyblanket 0.0.1__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 (45) hide show
  1. pyblanket-0.0.1/.gitignore +84 -0
  2. pyblanket-0.0.1/Cargo.lock +1814 -0
  3. pyblanket-0.0.1/Cargo.toml +61 -0
  4. pyblanket-0.0.1/LICENSE +21 -0
  5. pyblanket-0.0.1/PKG-INFO +269 -0
  6. pyblanket-0.0.1/README.md +253 -0
  7. pyblanket-0.0.1/THIRD_PARTY_LICENSES.md +11 -0
  8. pyblanket-0.0.1/build.rs +14 -0
  9. pyblanket-0.0.1/pyproject.toml +98 -0
  10. pyblanket-0.0.1/python/blanket/Compressor.py +171 -0
  11. pyblanket-0.0.1/python/blanket/Image.py +1653 -0
  12. pyblanket-0.0.1/python/blanket/ImageChops.py +390 -0
  13. pyblanket-0.0.1/python/blanket/ImageEnhance.py +125 -0
  14. pyblanket-0.0.1/python/blanket/ImageFilter.py +593 -0
  15. pyblanket-0.0.1/python/blanket/ImageOps.py +571 -0
  16. pyblanket-0.0.1/python/blanket/ImagePalette.py +375 -0
  17. pyblanket-0.0.1/python/blanket/ImageStat.py +199 -0
  18. pyblanket-0.0.1/python/blanket/__init__.py +6 -0
  19. pyblanket-0.0.1/python/blanket/_color.py +65 -0
  20. pyblanket-0.0.1/python/blanket/_color_names.py +154 -0
  21. pyblanket-0.0.1/python/blanket/_exif.py +177 -0
  22. pyblanket-0.0.1/python/blanket/_palette.py +74 -0
  23. pyblanket-0.0.1/rust-toolchain.toml +3 -0
  24. pyblanket-0.0.1/rustfmt.toml +7 -0
  25. pyblanket-0.0.1/src/chops.rs +222 -0
  26. pyblanket-0.0.1/src/codecs.rs +1260 -0
  27. pyblanket-0.0.1/src/composite.rs +322 -0
  28. pyblanket-0.0.1/src/compressor.rs +1572 -0
  29. pyblanket-0.0.1/src/compressor_simd.rs +716 -0
  30. pyblanket-0.0.1/src/enhance.rs +369 -0
  31. pyblanket-0.0.1/src/filter.rs +598 -0
  32. pyblanket-0.0.1/src/lib.rs +48 -0
  33. pyblanket-0.0.1/src/lossy_compressor.rs +458 -0
  34. pyblanket-0.0.1/src/ops.rs +1280 -0
  35. pyblanket-0.0.1/src/ops_simd.rs +970 -0
  36. pyblanket-0.0.1/src/palette.rs +187 -0
  37. pyblanket-0.0.1/src/palette_simd.rs +83 -0
  38. pyblanket-0.0.1/src/parallel.rs +280 -0
  39. pyblanket-0.0.1/src/quantize.rs +643 -0
  40. pyblanket-0.0.1/src/quantize_simd.rs +143 -0
  41. pyblanket-0.0.1/src/raster.rs +898 -0
  42. pyblanket-0.0.1/src/simd.rs +251 -0
  43. pyblanket-0.0.1/src/stat.rs +204 -0
  44. pyblanket-0.0.1/src/x86_pixels.rs +338 -0
  45. pyblanket-0.0.1/uv.lock +987 -0
@@ -0,0 +1,84 @@
1
+ /target
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ .pytest_cache/
6
+ *.py[cod]
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ .venv/
14
+ .cargo/
15
+ env/
16
+ bin/
17
+ build/
18
+ develop-eggs/
19
+ dist/
20
+ site/
21
+ eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ include/
28
+ man/
29
+ venv/
30
+ *.egg-info/
31
+ .installed.cfg
32
+ *.egg
33
+ *.json
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+ pip-selfcheck.json
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .coverage
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ .benchmarks/
48
+ test_images
49
+
50
+ # Translations
51
+ *.mo
52
+
53
+ # MkDocs
54
+ /site
55
+ /docs/
56
+
57
+ # Mr Developer
58
+ .mr.developer.cfg
59
+ .project
60
+ .pydevproject
61
+
62
+ # Rope
63
+ .ropeproject
64
+
65
+ # Django stuff:
66
+ *.log
67
+ *.pot
68
+
69
+ .DS_Store
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyCharm
75
+ .idea/
76
+
77
+ # VSCode
78
+ .vscode/
79
+
80
+ # Pyenv
81
+ .python-version
82
+
83
+ # pre-commit
84
+ .pre-commit*