Metadata-Version: 2.4
Name: hpc-temp
Version: 0.1.0
Summary: A minimal library that writes a bundled TXT file to a local path.
Author: Lenovo
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# HPC

`HPC` is a tiny Python package with one job: write the bundled text file to a local path on the user's machine.

## Install

```bash
pip install hpc-temp
```

## Use

```python
from hpc import txt

written_path = txt("output.txt")
print(written_path)
```

The package ships with `hpc/data.txt`, and `txt()` copies that content to the destination you choose.
