paperforge-notes 0.1.1__tar.gz → 0.1.2__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.
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/PKG-INFO +17 -13
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/README.md +471 -467
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/PKG-INFO +17 -13
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/pyproject.toml +2 -2
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/tests/test_exports.py +70 -70
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/tests/test_markdown_compiler.py +106 -106
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/tests/test_math.py +65 -65
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/SOURCES.txt +0 -0
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/dependency_links.txt +0 -0
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/entry_points.txt +0 -0
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/requires.txt +0 -0
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/paperforge_notes.egg-info/top_level.txt +0 -0
- {paperforge_notes-0.1.1 → paperforge_notes-0.1.2}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paperforge-notes
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Deprecated. This package has moved to
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Deprecated. This package has moved to engrapha-notes.
|
|
5
5
|
Author: Bharat Dangi
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,19 +20,23 @@ Requires-Dist: pytest-cov>=6.0; extra == "dev"
|
|
|
20
20
|
Requires-Dist: ruff>=0.9.0; extra == "dev"
|
|
21
21
|
Requires-Dist: mypy>=1.11.0; extra == "dev"
|
|
22
22
|
|
|
23
|
-
> **⚠️ This project has
|
|
23
|
+
> **⚠️ This project has moved to Engrapha.**
|
|
24
24
|
>
|
|
25
25
|
> PaperForge is no longer under active development.
|
|
26
26
|
>
|
|
27
|
-
>
|
|
27
|
+
> Please install:
|
|
28
28
|
>
|
|
29
|
-
>
|
|
30
|
-
>
|
|
31
|
-
>
|
|
29
|
+
> ```bash
|
|
30
|
+
> pip install engrapha-notes
|
|
31
|
+
> ```
|
|
32
32
|
>
|
|
33
|
-
>
|
|
33
|
+
> Repository:
|
|
34
|
+
> https://github.com/Bharat940/engrapha
|
|
35
|
+
>
|
|
36
|
+
> Documentation:
|
|
37
|
+
> https://bharat940.github.io/engrapha
|
|
34
38
|
|
|
35
|
-

|
|
36
40
|
# 📝 paperforge_notes
|
|
37
41
|
|
|
38
42
|
[](https://www.python.org/)
|
|
@@ -215,7 +219,7 @@ pn.info_table(
|
|
|
215
219
|
|
|
216
220
|
### 4. Images (Local & Remote)
|
|
217
221
|
|
|
218
|
-
You can render images from local paths or remote URLs directly into your document. Remote URLs are automatically downloaded and cached locally in `.
|
|
222
|
+
You can render images from local paths or remote URLs directly into your document. Remote URLs are automatically downloaded and cached locally in `.PaperForge_cache/images` for offline access and speed.
|
|
219
223
|
|
|
220
224
|
#### Sizing and Hyperlink Example
|
|
221
225
|
|
|
@@ -403,10 +407,10 @@ pn.packet_format(
|
|
|
403
407
|
|
|
404
408
|
## 💻 Markdown CLI Compiler
|
|
405
409
|
|
|
406
|
-
You can compile markdown notes files directly to PDF via the command line interface using either `
|
|
410
|
+
You can compile markdown notes files directly to PDF via the command line interface using either `PaperForge` or `pdfnotes`:
|
|
407
411
|
|
|
408
412
|
```bash
|
|
409
|
-
|
|
413
|
+
PaperForge input.md --output output.pdf --theme catppuccin-mocha
|
|
410
414
|
```
|
|
411
415
|
|
|
412
416
|
### Options:
|
|
@@ -480,7 +484,7 @@ def add(x: Flowable | list[Flowable] | tuple[Flowable, ...]) -> None:
|
|
|
480
484
|
* **Python** >= 3.11
|
|
481
485
|
* **reportlab** >= 4.5.1
|
|
482
486
|
* **pygments** >= 2.20.0
|
|
483
|
-
* **
|
|
487
|
+
* **PaperForge-diagrams** >= 0.1.0
|
|
484
488
|
|
|
485
489
|
Optional (extended features — install with `[full]`):
|
|
486
490
|
* **pymupdf** >= 1.25.0 (PPTX export, document splitting)
|