Metadata-Version: 2.4
Name: py-test-siva
Version: 0.1.0
Summary: A simple example package
Author: Your Name
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# py-test

A minimal Python package example.

## Installation

```bash
pip install py-test
```

## Usage

```python
from py_test import greet

print(greet())
print(greet("Copilot"))
```

## Build and publish

```bash
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
```

To publish to TestPyPI:

```bash
python -m twine upload --repository testpypi dist/*
```

To publish to PyPI:

```bash
python -m twine upload dist/*
```
