pptx-md 0.0.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.
pptx_md/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """pptx-md — Convert PPTX files into LLM-friendly Markdown.
2
+
3
+ Public API re-exports go here as modules land in later milestones, e.g.:
4
+
5
+ # M6 / FR-16:
6
+ # from pptx_md.api import convert, ConvertOptions
7
+ # __all__ = ["convert", "ConvertOptions"]
8
+
9
+ Until then this module only guarantees that ``import pptx_md`` succeeds
10
+ (FR-01 AC2). Internal submodules must not be exposed directly (skill §1).
11
+ """
12
+
13
+ __all__: list[str] = []
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: pptx-md
3
+ Version: 0.0.0
4
+ Summary: Convert PPTX files into LLM-friendly Markdown (VLM-first image understanding).
5
+ Project-URL: Homepage, https://github.com/ms9648/pptx-md
6
+ Project-URL: Repository, https://github.com/ms9648/pptx-md
7
+ Author: ms9648
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: llm,markdown,powerpoint,pptx,vlm
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Topic :: Text Processing :: Markup :: Markdown
17
+ Requires-Python: >=3.11
18
+ Requires-Dist: pillow
19
+ Requires-Dist: python-pptx
20
+ Provides-Extra: dev
21
+ Requires-Dist: black; extra == 'dev'
22
+ Requires-Dist: mypy; extra == 'dev'
23
+ Requires-Dist: pytest; extra == 'dev'
24
+ Requires-Dist: pytest-cov; extra == 'dev'
25
+ Requires-Dist: ruff; extra == 'dev'
26
+ Provides-Extra: vlm
27
+ Requires-Dist: anthropic>=0.20; extra == 'vlm'
28
+ Requires-Dist: openai>=1.0; extra == 'vlm'
29
+ Description-Content-Type: text/markdown
30
+
31
+ # pptx-md
32
+
33
+ Convert PPTX files into LLM-friendly Markdown (VLM-first image understanding).
34
+
35
+ > **Work in progress** — Full documentation and usage examples will be added in M6 (FR-18).
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ pip install pptx-md
41
+ ```
42
+
43
+ With VLM support:
44
+
45
+ ```bash
46
+ pip install pptx-md[vlm]
47
+ ```
48
+
49
+ ## Requirements
50
+
51
+ - Python 3.11+
@@ -0,0 +1,5 @@
1
+ pptx_md/__init__.py,sha256=-3zbr0zzjBgxiYJ2syZ93JL5m4ODG7KFeBM9f8dS8zY,432
2
+ pptx_md-0.0.0.dist-info/METADATA,sha256=BN1YmCHvyCE_LVziiZDxl92_k1W3Ke6M-K7CMFbql8M,1403
3
+ pptx_md-0.0.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ pptx_md-0.0.0.dist-info/licenses/LICENSE,sha256=RKTRlVOHO9hmbcJq_7nSUBjACtA7H8pkMvk1R3NePvs,1063
5
+ pptx_md-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ms9648
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.