Metadata-Version: 2.4
Name: arkraft
Version: 0.0.94
Summary: arkraft standalone — reassemble the bundle tarball from PyPI chunks and verify it
License: Proprietary
Requires-Python: >=3.8
Requires-Dist: arkraft-bin-0==0.0.94
Requires-Dist: arkraft-bin-1==0.0.94
Requires-Dist: arkraft-bin-2==0.0.94
Requires-Dist: arkraft-bin-3==0.0.94
Description-Content-Type: text/markdown

# arkraft

Delivers the `arkraft` standalone bundle (a single large `.tar.gz`) **through PyPI**,
for environments where PyPI is the only reachable network endpoint.

The bundle is too big for one PyPI file (100 MiB per-file limit), so it is split into a
few data-chunk packages (`arkraft-bin-0` …) that this package depends on. `pip install
arkraft` pulls every chunk from PyPI; running `arkraft` then **reassembles them into the
original tarball and verifies its checksum** — it does not extract or run anything.

```bash
pip install arkraft
arkraft                        # writes ./arkraft-<version>-linux-x64-musl.tar.gz and verifies sha256
arkraft -o /path/to/out.tar.gz    # or choose the output path
```

The reassembled file is byte-identical to the released bundle tarball. Extract and run it
yourself on a Linux x86_64 host:

```bash
mkdir arkraft && tar -xzf arkraft-<version>-linux-x64-musl.tar.gz -C arkraft
cd arkraft && ./arkraft
```
