pdf-email-optimizer 0.1.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.
@@ -0,0 +1,5 @@
1
+ """Tools for making email-safe PDF copies while preserving visual quality."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __version__ = "0.1.0"
@@ -0,0 +1,8 @@
1
+ """Run the PDF Email Optimizer CLI with ``python -m pdf_email_optimizer``."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from .cli import main
6
+
7
+ if __name__ == "__main__":
8
+ raise SystemExit(main())
@@ -0,0 +1,7 @@
1
+ """Console entry point for PDF Email Optimizer."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from .optimizer import main
6
+
7
+ __all__ = ["main"]
@@ -0,0 +1,7 @@
1
+ """Project-specific exception types."""
2
+
3
+ from __future__ import annotations
4
+
5
+
6
+ class PdfEmailOptimizerError(Exception):
7
+ """Base exception for optimizer integration code."""
@@ -0,0 +1,7 @@
1
+ """Ghostscript fallback integration."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from .optimizer import run_ghostscript
6
+
7
+ __all__ = ["run_ghostscript"]