mdify-cli 2.7.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.
assets/mdify.png ADDED
Binary file
mdify/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """mdify - Convert documents to Markdown via Docling container."""
2
+
3
+ __version__ = "2.7.0"
mdify/__main__.py ADDED
@@ -0,0 +1,7 @@
1
+ """Allow running mdify as a module: python -m mdify"""
2
+
3
+ import sys
4
+ from mdify.cli import main
5
+
6
+ if __name__ == "__main__":
7
+ sys.exit(main())