cbxy 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.
cbxy-0.1.0/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.pyc
4
+ .ruff_cache/
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .DS_Store
@@ -0,0 +1 @@
1
+ 3.10
cbxy-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ngafar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
cbxy-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: cbxy
3
+ Version: 0.1.0
4
+ Summary: Comic panel sidecar format — install all cbxy tools
5
+ Project-URL: Homepage, https://github.com/ngafar/cbxy
6
+ Project-URL: Repository, https://github.com/ngafar/cbxy
7
+ Project-URL: Issues, https://github.com/ngafar/cbxy/issues
8
+ Author: ngafar
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: cbr,cbxy,cbz,comics,guided-view,panels
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: End Users/Desktop
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Multimedia :: Graphics
18
+ Requires-Python: >=3.10
19
+ Requires-Dist: cbxy-editor==0.1.0
20
+ Requires-Dist: cbxy-generator==0.1.0
21
+ Requires-Dist: cbxy-reader==0.1.0
22
+ Description-Content-Type: text/markdown
23
+
24
+ # cbxy
25
+
26
+ Meta-package that installs all cbxy reference tools:
27
+
28
+ - **cbxy-generator** — detect panels and write `.cbxy` sidecars
29
+ - **cbxy-reader** — guided browser reader
30
+ - **cbxy-editor** — manual panel box editor
31
+
32
+ ```bash
33
+ pip install cbxy
34
+ ```
35
+
36
+ Or install tools individually:
37
+
38
+ ```bash
39
+ pip install cbxy-generator
40
+ pip install cbxy-reader
41
+ pip install cbxy-editor
42
+ ```
43
+
44
+ See the [repo root README](../README.md) for the `.cbxy` format spec.
cbxy-0.1.0/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # cbxy
2
+
3
+ Meta-package that installs all cbxy reference tools:
4
+
5
+ - **cbxy-generator** — detect panels and write `.cbxy` sidecars
6
+ - **cbxy-reader** — guided browser reader
7
+ - **cbxy-editor** — manual panel box editor
8
+
9
+ ```bash
10
+ pip install cbxy
11
+ ```
12
+
13
+ Or install tools individually:
14
+
15
+ ```bash
16
+ pip install cbxy-generator
17
+ pip install cbxy-reader
18
+ pip install cbxy-editor
19
+ ```
20
+
21
+ See the [repo root README](../README.md) for the `.cbxy` format spec.
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "cbxy"
3
+ version = "0.1.0"
4
+ description = "Comic panel sidecar format — install all cbxy tools"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = "MIT"
8
+ authors = [{ name = "ngafar" }]
9
+ keywords = ["comics", "cbz", "cbr", "panels", "cbxy", "guided-view"]
10
+ classifiers = [
11
+ "Development Status :: 3 - Alpha",
12
+ "Environment :: Console",
13
+ "Intended Audience :: End Users/Desktop",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Programming Language :: Python :: 3",
16
+ "Topic :: Multimedia :: Graphics",
17
+ ]
18
+ dependencies = [
19
+ "cbxy-editor==0.1.0",
20
+ "cbxy-generator==0.1.0",
21
+ "cbxy-reader==0.1.0",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/ngafar/cbxy"
26
+ Repository = "https://github.com/ngafar/cbxy"
27
+ Issues = "https://github.com/ngafar/cbxy/issues"
28
+
29
+ [build-system]
30
+ requires = ["hatchling"]
31
+ build-backend = "hatchling.build"
32
+
33
+ [tool.hatch.build.targets.wheel]
34
+ packages = ["cbxy"]