superdoc-sdk-cli-linux-x64 1.0.0__py3-none-any.whl

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,24 @@
1
+ """SuperDoc CLI binary for Linux x64."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import os
6
+ from importlib import resources
7
+
8
+
9
+ _BINARY_NAME = 'superdoc'
10
+
11
+
12
+ def get_binary_path() -> str:
13
+ """Return the absolute path to the bundled CLI binary, ensuring it is executable."""
14
+ binary = resources.files(__package__).joinpath('bin', _BINARY_NAME)
15
+ path = str(binary)
16
+
17
+ if not os.path.isfile(path):
18
+ raise FileNotFoundError(f'CLI binary not found: {path}')
19
+
20
+ if os.name != 'nt':
21
+ mode = os.stat(path).st_mode
22
+ os.chmod(path, mode | 0o111)
23
+
24
+ return path
Binary file
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: superdoc-sdk-cli-linux-x64
3
+ Version: 1.0.0
4
+ Summary: SuperDoc CLI binary for Linux x64
5
+ Author: SuperDoc
6
+ License-Expression: AGPL-3.0
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+
10
+ # superdoc-sdk-cli-linux-x64
11
+
12
+ Platform companion package for [`superdoc-sdk`](https://pypi.org/project/superdoc-sdk/).
13
+
14
+ This package is automatically installed by `superdoc-sdk` via PEP 508 environment markers — you do not need to install it manually.
15
+
16
+ For air-gapped or private index environments, mirror both `superdoc-sdk` and the `superdoc-sdk-cli-*` package for your platform.
@@ -0,0 +1,6 @@
1
+ superdoc_sdk_cli_linux_x64/__init__.py,sha256=PG1hXGIV_FF9PQuGn2qytjb5rwB54_rvxCVEhpv9yuc,579
2
+ superdoc_sdk_cli_linux_x64/bin/superdoc,sha256=fMEIktP3SNA5_9GAlmQxbijhPTan7hHqk83k4TZ0jt0,114128290
3
+ superdoc_sdk_cli_linux_x64-1.0.0.dist-info/METADATA,sha256=BnLZTWThE36gtxh6ROsiq1TK8jhjI06ctPQXwHt9j6M,607
4
+ superdoc_sdk_cli_linux_x64-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
5
+ superdoc_sdk_cli_linux_x64-1.0.0.dist-info/top_level.txt,sha256=2qMA8q0dKiWUHrRpY5KLltJBd1ExVIndnvep2lb2FNU,27
6
+ superdoc_sdk_cli_linux_x64-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ superdoc_sdk_cli_linux_x64