convert-docs 0.1.0__tar.gz → 0.1.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.
- {convert_docs-0.1.0 → convert_docs-0.1.1}/PKG-INFO +2 -4
- {convert_docs-0.1.0 → convert_docs-0.1.1}/README.md +0 -2
- {convert_docs-0.1.0 → convert_docs-0.1.1}/pyproject.toml +2 -2
- {convert_docs-0.1.0 → convert_docs-0.1.1}/.github/workflows/publish.yml +0 -0
- {convert_docs-0.1.0 → convert_docs-0.1.1}/.gitignore +0 -0
- {convert_docs-0.1.0 → convert_docs-0.1.1}/src/convert_docs/__init__.py +0 -0
- {convert_docs-0.1.0 → convert_docs-0.1.1}/src/convert_docs/cli.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: convert-docs
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Recursively convert documents (pdf, docx, pptx, xlsx, ...) to Markdown via markitdown, mirroring the source folder structure into a destination folder.
|
|
5
|
-
Requires-Python: >=3.
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: markitdown[docx,outlook,pdf,pptx,xls,xlsx]>=0.1.5
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
@@ -18,8 +18,6 @@ structure into a destination folder.
|
|
|
18
18
|
uv tool install convert-docs
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
(Or, before it's published to PyPI: `uv tool install git+https://github.com/owenljy/convert-docs`)
|
|
22
|
-
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
23
|
Run with no flags for an interactive prompt (asks for source, then destination):
|
|
@@ -10,8 +10,6 @@ structure into a destination folder.
|
|
|
10
10
|
uv tool install convert-docs
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
(Or, before it's published to PyPI: `uv tool install git+https://github.com/owenljy/convert-docs`)
|
|
14
|
-
|
|
15
13
|
## Usage
|
|
16
14
|
|
|
17
15
|
Run with no flags for an interactive prompt (asks for source, then destination):
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "convert-docs"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Recursively convert documents (pdf, docx, pptx, xlsx, ...) to Markdown via markitdown, mirroring the source folder structure into a destination folder."
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
7
|
dependencies = [
|
|
8
8
|
"markitdown[pdf,docx,pptx,xlsx,xls,outlook]>=0.1.5",
|
|
9
9
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|