Metadata-Version: 2.4
Name: hpc-text-viewer
Version: 0.1.2
Summary: A pip-installable viewer for the HPC text file.
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# HPC Text Viewer

This package bundles the existing `e3b0c44298fc1c149afbf.txt` file and exposes a simple CLI to view its contents after installation.

## Install locally

```bash
pip install .
```

To install a new version after updates:

```bash
pip install --upgrade .
```

## Usage

Show the file with paging support:

```bash
hpc-view-file
```

Save the bundled text file into the current directory:

```bash
hpc-view-file --save
```

Save to a custom target path:

```bash
hpc-view-file --save output.txt
```

Print the file directly without a pager:

```bash
hpc-view-file --no-pager
```

## Package contents

- `hpc_text_viewer/` — Python package source
- `hpc_text_viewer/data/e3b0c44298fc1c149afbf.txt` — bundled text file
- `pyproject.toml` — packaging metadata
