ansi-art-convert 0.1.0__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.
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026, Tom McKeesick
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: ansi-art-convert
3
+ Version: 0.1.0
4
+ Summary: ANSI > UTF-8 Conversion
5
+ Author-email: Tom McKeesick <tmck01@gmail.com>
6
+ Maintainer-email: Tom McKeesick <tmck01@gmail.com>
7
+ License-Expression: BSD-3-Clause
8
+ Project-URL: homepage, https://github.com/tmck-code/py-ansi-art-convert
9
+ Keywords: ANSI,ASCII,art,conversion,UTF-8,terminal
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Topic :: Terminals
14
+ Classifier: Topic :: Utilities
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: laser-prynter
19
+ Dynamic: license-file
20
+
21
+ # ANSI > UTF-8 Conversion
22
+
23
+ ## Usage
24
+
25
+ ```shell
26
+ usage: ansi-art-convert [-h] --fpath FPATH [--encoding ENCODING] [--sauce-only] [--verbose] [--ice-colours] [--font-name FONT_NAME] [--width WIDTH]
27
+
28
+ options:
29
+ -h, --help show this help message and exit
30
+ --fpath, -f FPATH Path to the ANSI file to render.
31
+ --encoding, -e ENCODING
32
+ Specify the file encoding (cp437, iso-8859-1, ascii, utf-8) if the auto-detection was incorrect.
33
+ --sauce-only, -s Only output the SAUCE record information as JSON and exit.
34
+ --verbose, -v Enable verbose debug output.
35
+ --ice-colours Force enabling ICE colours (non-blinking background).
36
+ --font-name FONT_NAME
37
+ Specify the font name to determine glyph offset (overrides SAUCE font).
38
+ --width, -w WIDTH Specify the output width (overrides SAUCE tinfo1).
39
+ ```
40
+
41
+ ## Documentation
42
+
43
+ - [SAUCE Metadata](docs/sauce.md)
44
+
45
+ ## Resources
46
+
47
+ - [The origins of DEL (0x7F) and its Legacy in Amiga ASCII art](https://blog.glyphdrawing.club/the-origins-of-del-0x7f-and-its-legacy-in-amiga-ascii-art/)
48
+ - [rewtnull/amigafonts](https://github.com/rewtnull/amigafonts)
49
+ - [Screwtapello/topaz-unicode](https://gitlab.com/Screwtapello/topaz-unicode)
50
+ - [Rob Hagemans' Hoard of Bitfonts](https://github.com/robhagemans/hoard-of-bitfonts)
51
+ - [amigavision/TopazDouble](https://github.com/amigavision/TopazDouble)
@@ -0,0 +1,31 @@
1
+ # ANSI > UTF-8 Conversion
2
+
3
+ ## Usage
4
+
5
+ ```shell
6
+ usage: ansi-art-convert [-h] --fpath FPATH [--encoding ENCODING] [--sauce-only] [--verbose] [--ice-colours] [--font-name FONT_NAME] [--width WIDTH]
7
+
8
+ options:
9
+ -h, --help show this help message and exit
10
+ --fpath, -f FPATH Path to the ANSI file to render.
11
+ --encoding, -e ENCODING
12
+ Specify the file encoding (cp437, iso-8859-1, ascii, utf-8) if the auto-detection was incorrect.
13
+ --sauce-only, -s Only output the SAUCE record information as JSON and exit.
14
+ --verbose, -v Enable verbose debug output.
15
+ --ice-colours Force enabling ICE colours (non-blinking background).
16
+ --font-name FONT_NAME
17
+ Specify the font name to determine glyph offset (overrides SAUCE font).
18
+ --width, -w WIDTH Specify the output width (overrides SAUCE tinfo1).
19
+ ```
20
+
21
+ ## Documentation
22
+
23
+ - [SAUCE Metadata](docs/sauce.md)
24
+
25
+ ## Resources
26
+
27
+ - [The origins of DEL (0x7F) and its Legacy in Amiga ASCII art](https://blog.glyphdrawing.club/the-origins-of-del-0x7f-and-its-legacy-in-amiga-ascii-art/)
28
+ - [rewtnull/amigafonts](https://github.com/rewtnull/amigafonts)
29
+ - [Screwtapello/topaz-unicode](https://gitlab.com/Screwtapello/topaz-unicode)
30
+ - [Rob Hagemans' Hoard of Bitfonts](https://github.com/robhagemans/hoard-of-bitfonts)
31
+ - [amigavision/TopazDouble](https://github.com/amigavision/TopazDouble)
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: ansi-art-convert
3
+ Version: 0.1.0
4
+ Summary: ANSI > UTF-8 Conversion
5
+ Author-email: Tom McKeesick <tmck01@gmail.com>
6
+ Maintainer-email: Tom McKeesick <tmck01@gmail.com>
7
+ License-Expression: BSD-3-Clause
8
+ Project-URL: homepage, https://github.com/tmck-code/py-ansi-art-convert
9
+ Keywords: ANSI,ASCII,art,conversion,UTF-8,terminal
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Topic :: Terminals
14
+ Classifier: Topic :: Utilities
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: laser-prynter
19
+ Dynamic: license-file
20
+
21
+ # ANSI > UTF-8 Conversion
22
+
23
+ ## Usage
24
+
25
+ ```shell
26
+ usage: ansi-art-convert [-h] --fpath FPATH [--encoding ENCODING] [--sauce-only] [--verbose] [--ice-colours] [--font-name FONT_NAME] [--width WIDTH]
27
+
28
+ options:
29
+ -h, --help show this help message and exit
30
+ --fpath, -f FPATH Path to the ANSI file to render.
31
+ --encoding, -e ENCODING
32
+ Specify the file encoding (cp437, iso-8859-1, ascii, utf-8) if the auto-detection was incorrect.
33
+ --sauce-only, -s Only output the SAUCE record information as JSON and exit.
34
+ --verbose, -v Enable verbose debug output.
35
+ --ice-colours Force enabling ICE colours (non-blinking background).
36
+ --font-name FONT_NAME
37
+ Specify the font name to determine glyph offset (overrides SAUCE font).
38
+ --width, -w WIDTH Specify the output width (overrides SAUCE tinfo1).
39
+ ```
40
+
41
+ ## Documentation
42
+
43
+ - [SAUCE Metadata](docs/sauce.md)
44
+
45
+ ## Resources
46
+
47
+ - [The origins of DEL (0x7F) and its Legacy in Amiga ASCII art](https://blog.glyphdrawing.club/the-origins-of-del-0x7f-and-its-legacy-in-amiga-ascii-art/)
48
+ - [rewtnull/amigafonts](https://github.com/rewtnull/amigafonts)
49
+ - [Screwtapello/topaz-unicode](https://gitlab.com/Screwtapello/topaz-unicode)
50
+ - [Rob Hagemans' Hoard of Bitfonts](https://github.com/robhagemans/hoard-of-bitfonts)
51
+ - [amigavision/TopazDouble](https://github.com/amigavision/TopazDouble)
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ ansi_art_convert/ansi_art_convert.egg-info/PKG-INFO
5
+ ansi_art_convert/ansi_art_convert.egg-info/SOURCES.txt
6
+ ansi_art_convert/ansi_art_convert.egg-info/dependency_links.txt
7
+ ansi_art_convert/ansi_art_convert.egg-info/entry_points.txt
8
+ ansi_art_convert/ansi_art_convert.egg-info/requires.txt
9
+ ansi_art_convert/ansi_art_convert.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ansi-art-convert = ansi_art_convert.convert:main
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "ansi-art-convert"
3
+ version = "0.1.0"
4
+ description = "ANSI > UTF-8 Conversion"
5
+ readme = "README.md"
6
+ license = "BSD-3-Clause"
7
+ license-files = ["LICENSE"]
8
+ authors = [{ name = "Tom McKeesick", email = "tmck01@gmail.com" }]
9
+ maintainers = [{ name = "Tom McKeesick", email = "tmck01@gmail.com" }]
10
+ keywords = ["ANSI", "ASCII", "art", "conversion", "UTF-8", "terminal"]
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3 :: Only",
13
+ "Programming Language :: Python :: 3.12",
14
+ "Operating System :: OS Independent",
15
+ "Topic :: Terminals",
16
+ "Topic :: Utilities",
17
+ ]
18
+ requires-python = ">=3.12"
19
+ dependencies = ["laser-prynter"]
20
+ [dependency-groups]
21
+ dev = ["build", "twine"]
22
+
23
+ [project.urls]
24
+ homepage = "https://github.com/tmck-code/py-ansi-art-convert"
25
+
26
+ [project.scripts]
27
+ ansi-art-convert = "ansi_art_convert.convert:main"
28
+
29
+ [tool.setuptools.packages.find]
30
+ where = ["ansi_art_convert"]
31
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+