pagefuse 0.0.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.
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: pagefuse
3
+ Version: 0.0.1
4
+ Summary: document tool — coming soon
5
+ Author-email: RaptorGold <hello@pagefuse.net>
6
+ License: TBD
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # PageFuse
12
+
13
+ Universal document assembly tool. Coming soon.
14
+
15
+ Combine pages from PDFs, Word documents, PowerPoint slides, and more — no Adobe subscription required.
@@ -0,0 +1,5 @@
1
+ # PageFuse
2
+
3
+ Universal document assembly tool. Coming soon.
4
+
5
+ Combine pages from PDFs, Word documents, PowerPoint slides, and more — no Adobe subscription required.
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("PageFuse — coming soon. Visit https://pagefuse.net")
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: pagefuse
3
+ Version: 0.0.1
4
+ Summary: document tool — coming soon
5
+ Author-email: RaptorGold <hello@pagefuse.net>
6
+ License: TBD
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # PageFuse
12
+
13
+ Universal document assembly tool. Coming soon.
14
+
15
+ Combine pages from PDFs, Word documents, PowerPoint slides, and more — no Adobe subscription required.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ pagefuse/__init__.py
4
+ pagefuse/cli.py
5
+ pagefuse.egg-info/PKG-INFO
6
+ pagefuse.egg-info/SOURCES.txt
7
+ pagefuse.egg-info/dependency_links.txt
8
+ pagefuse.egg-info/entry_points.txt
9
+ pagefuse.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pagefuse = pagefuse.cli:main
@@ -0,0 +1 @@
1
+ pagefuse
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+
4
+ [project]
5
+ name = "pagefuse"
6
+ version = "0.0.1"
7
+ description = "document tool — coming soon"
8
+ readme = "README.md"
9
+ requires-python = ">=3.9"
10
+ license = {text = "TBD"}
11
+ authors = [
12
+ {name = "RaptorGold", email = "hello@pagefuse.net"}
13
+ ]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ ]
17
+
18
+ [project.scripts]
19
+ pagefuse = "pagefuse.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+