Metadata-Version: 2.5
Name: prima-pulumi
Version: 0.1.0
Summary: A minimal Python package.
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# prima-pulumi

A minimal Python package.

## Installation

```bash
uv add prima-pulumi
```

## Usage

```python
from prima_pulumi import hello_world

hello_world()
```

Output:

```text
hello world
```

## Publishing

Build the package with:

```bash
uv build
```

Upload the resulting files in `dist/` to PyPI:

```bash
uv publish
```

Use `uv publish --publish-url https://test.pypi.org/legacy/` to test the release flow on TestPyPI first.
