Metadata-Version: 2.4
Name: helloworld-sdk-satya
Version: 0.1.0
Summary: A minimal Hello World SDK
Author-email: satya <satyamani666@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# HelloWorld SDK

A minimal Python SDK that provides a simple `greet()` function.

Installation
------------

Install from source (recommended for this example):

```bash
python -m pip install helloworld-sdk-satya
```

Usage
-----

```python
from helloworld_sdk import greet

print(greet("Alice"))  # "Hello, Alice!"
```

Development
-----------

Run tests with `pytest`:

```bash
python -m pip install -r requirements-dev.txt  # optional
pytest
```

Project layout
--------------

- `src/helloworld_sdk` — package source
- `example/usage.py` — example usage script
- `tests/` — unit tests (pytest)
- `pyproject.toml` — project metadata and build config
- `.gitignore` — files to ignore

License
-------

This project uses the existing `LICENSE` file in the repository.
