Metadata-Version: 2.4
Name: arkraft
Version: 0.0.25.post1
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.25
Requires-Dist: arkraft-bin-1==0.0.25
Requires-Dist: arkraft-bin-2==0.0.25
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, so it is split into chunk packages
(`arkraft-bin-0` … `arkraft-bin-3`) 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-0.0.25-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-0.0.25-linux-x64-musl.tar.gz -C arkraft
cd arkraft && ./arkraft
```
