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.
- pagefuse-0.0.1/PKG-INFO +15 -0
- pagefuse-0.0.1/README.md +5 -0
- pagefuse-0.0.1/pagefuse/__init__.py +1 -0
- pagefuse-0.0.1/pagefuse/cli.py +2 -0
- pagefuse-0.0.1/pagefuse.egg-info/PKG-INFO +15 -0
- pagefuse-0.0.1/pagefuse.egg-info/SOURCES.txt +9 -0
- pagefuse-0.0.1/pagefuse.egg-info/dependency_links.txt +1 -0
- pagefuse-0.0.1/pagefuse.egg-info/entry_points.txt +2 -0
- pagefuse-0.0.1/pagefuse.egg-info/top_level.txt +1 -0
- pagefuse-0.0.1/pyproject.toml +19 -0
- pagefuse-0.0.1/setup.cfg +4 -0
pagefuse-0.0.1/PKG-INFO
ADDED
|
@@ -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.
|
pagefuse-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -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"
|
pagefuse-0.0.1/setup.cfg
ADDED