mdify-cli 3.3.4__tar.gz → 3.3.5__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.
Files changed (27) hide show
  1. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/PKG-INFO +1 -1
  2. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/__init__.py +1 -1
  3. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/ssh/remote_container.py +1 -0
  4. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/PKG-INFO +1 -1
  5. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/pyproject.toml +1 -1
  6. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/LICENSE +0 -0
  7. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/README.md +0 -0
  8. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/assets/mdify.png +0 -0
  9. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/__main__.py +0 -0
  10. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/cli.py +0 -0
  11. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/container.py +0 -0
  12. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/docling_client.py +0 -0
  13. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/formatting.py +0 -0
  14. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/ssh/__init__.py +0 -0
  15. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/ssh/client.py +0 -0
  16. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/ssh/models.py +0 -0
  17. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify/ssh/transfer.py +0 -0
  18. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/SOURCES.txt +0 -0
  19. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/dependency_links.txt +0 -0
  20. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/entry_points.txt +0 -0
  21. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/requires.txt +0 -0
  22. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/mdify_cli.egg-info/top_level.txt +0 -0
  23. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/setup.cfg +0 -0
  24. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/tests/test_cli.py +0 -0
  25. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/tests/test_container.py +0 -0
  26. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/tests/test_docling_client.py +0 -0
  27. {mdify_cli-3.3.4 → mdify_cli-3.3.5}/tests/test_ssh_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mdify-cli
3
- Version: 3.3.4
3
+ Version: 3.3.5
4
4
  Summary: Convert PDFs and document images into structured Markdown for LLM workflows
5
5
  Author: tiroq
6
6
  License-Expression: MIT
@@ -1,3 +1,3 @@
1
1
  """mdify - Convert documents to Markdown via Docling container."""
2
2
 
3
- __version__ = "3.3.4"
3
+ __version__ = "3.3.5"
@@ -122,6 +122,7 @@ class RemoteContainer(DoclingContainer):
122
122
  f"{self.runtime} run "
123
123
  f"--name {self.name} "
124
124
  f"--publish {self.port}:5001 "
125
+ f"--env DOCLING_SERVE_MAX_SYNC_WAIT={self.timeout} "
125
126
  f"--detach "
126
127
  f"{self.image}"
127
128
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mdify-cli
3
- Version: 3.3.4
3
+ Version: 3.3.5
4
4
  Summary: Convert PDFs and document images into structured Markdown for LLM workflows
5
5
  Author: tiroq
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mdify-cli"
3
- version = "3.3.4"
3
+ version = "3.3.5"
4
4
  description = "Convert PDFs and document images into structured Markdown for LLM workflows"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes