xberg 0.1.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.
xberg-0.1.0/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ .alef/
2
+ __pycache__/
3
+ *.so
4
+ *.pyd
5
+ .venv/
6
+ *.egg-info/
7
+ dist/
8
+ node_modules/
9
+ *.node
10
+ .gems/
11
+ vendor/bundle/
12
+ vendor/
13
+ *.h.bak
14
+ *.test
15
+ target/
16
+ *.class
17
+ bin/
18
+ obj/
19
+ *.nupkg
xberg-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: xberg
3
+ Version: 0.1.0
4
+ Summary: Xberg package alias for Kreuzberg.
5
+ Project-URL: Homepage, https://xberg.io
6
+ Project-URL: Repository, https://github.com/kreuzberg-dev/kreuzberg
7
+ Project-URL: Documentation, https://docs.kreuzberg.dev
8
+ Author: Xberg
9
+ License-Expression: Elastic-2.0
10
+ Keywords: document,extraction,kreuzberg,ocr,parser,pdf,xberg
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: kreuzberg>=4.9.9
13
+ Description-Content-Type: text/markdown
14
+
15
+ # xberg
16
+
17
+ `xberg` is the Xberg package alias for
18
+ [Kreuzberg](https://pypi.org/project/kreuzberg/).
19
+
20
+ The canonical Python package remains `kreuzberg` today. This package reserves
21
+ the Xberg namespace and re-exports the same API.
22
+
23
+ ```python
24
+ import xberg
25
+ ```
xberg-0.1.0/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # xberg
2
+
3
+ `xberg` is the Xberg package alias for
4
+ [Kreuzberg](https://pypi.org/project/kreuzberg/).
5
+
6
+ The canonical Python package remains `kreuzberg` today. This package reserves
7
+ the Xberg namespace and re-exports the same API.
8
+
9
+ ```python
10
+ import xberg
11
+ ```
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "xberg"
7
+ version = "0.1.0"
8
+ description = "Xberg package alias for Kreuzberg."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "Elastic-2.0"
12
+ authors = [{ name = "Xberg" }]
13
+ keywords = ["document", "extraction", "pdf", "ocr", "parser", "xberg", "kreuzberg"]
14
+ dependencies = ["kreuzberg>=4.9.9"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://xberg.io"
18
+ Repository = "https://github.com/kreuzberg-dev/kreuzberg"
19
+ Documentation = "https://docs.kreuzberg.dev"
20
+
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["src/xberg"]
@@ -0,0 +1,3 @@
1
+ """Xberg package alias for Kreuzberg."""
2
+
3
+ from kreuzberg import * # noqa: F403