Metadata-Version: 2.4
Name: py-test-siva
Version: 0.1.1
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-siva

A minimal Python package example (distribution name: `py-test-siva`, import package: `py_test`).

## Installation

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

## 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/*
```

Before uploading, remove any old build artifacts so only the current distribution files are uploaded:

```powershell
Remove-Item -Recurse -Force dist build
python -m build
Get-ChildItem -Path dist
python -m twine upload dist\py_test_siva-*  # upload new artifacts only
```

To publish to TestPyPI:

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

To publish to PyPI:

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