pdf2okf 0.0.0__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.
- pdf2okf-0.0.0/PKG-INFO +13 -0
- pdf2okf-0.0.0/README.md +5 -0
- pdf2okf-0.0.0/pdf2okf/__init__.py +1 -0
- pdf2okf-0.0.0/pdf2okf.egg-info/PKG-INFO +13 -0
- pdf2okf-0.0.0/pdf2okf.egg-info/SOURCES.txt +7 -0
- pdf2okf-0.0.0/pdf2okf.egg-info/dependency_links.txt +1 -0
- pdf2okf-0.0.0/pdf2okf.egg-info/top_level.txt +1 -0
- pdf2okf-0.0.0/pyproject.toml +14 -0
- pdf2okf-0.0.0/setup.cfg +4 -0
pdf2okf-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pdf2okf
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved — PDF to OKF knowledge bundles (extraction + vision). Coming soon.
|
|
5
|
+
Author: Stefan Wittmann
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# pdf2okf
|
|
10
|
+
|
|
11
|
+
Reserved — PDF to OKF knowledge bundles (extraction + vision). Coming soon.
|
|
12
|
+
|
|
13
|
+
Name reserved for an upcoming release.
|
pdf2okf-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pdf2okf
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved — PDF to OKF knowledge bundles (extraction + vision). Coming soon.
|
|
5
|
+
Author: Stefan Wittmann
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# pdf2okf
|
|
10
|
+
|
|
11
|
+
Reserved — PDF to OKF knowledge bundles (extraction + vision). Coming soon.
|
|
12
|
+
|
|
13
|
+
Name reserved for an upcoming release.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pdf2okf
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pdf2okf"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved — PDF to OKF knowledge bundles (extraction + vision). Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [{ name = "Stefan Wittmann" }]
|
|
12
|
+
|
|
13
|
+
[tool.setuptools]
|
|
14
|
+
packages = ["pdf2okf"]
|
pdf2okf-0.0.0/setup.cfg
ADDED