lenkraster 0.1.0__py3-none-any.whl

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.
lenkraster/__init__.py ADDED
@@ -0,0 +1,23 @@
1
+ """LenkRaster: bounded pixel-art critique, palette, cycle, and Aseprite tools."""
2
+ from .aseprite import export_document as export_aseprite_document
3
+ from .aseprite import qa_document as qa_aseprite_document
4
+ from .critic import critique, critique_many
5
+ from .cycle import qa_cycle
6
+ from .palette import (available_palettes, check_contrast, dither_image, load_palette,
7
+ load_palette_file, make_ramp, quantize_file)
8
+
9
+ __version__ = "0.1.0"
10
+ __all__ = [
11
+ "critique",
12
+ "critique_many",
13
+ "qa_cycle",
14
+ "make_ramp",
15
+ "load_palette",
16
+ "load_palette_file",
17
+ "available_palettes",
18
+ "quantize_file",
19
+ "check_contrast",
20
+ "dither_image",
21
+ "export_aseprite_document",
22
+ "qa_aseprite_document",
23
+ ]