Metadata-Version: 2.1
Name: linkerbot
Version: 0.1.1
Summary: A simple SDK example with two methods
Home-page: https://github.com/yourusername/linkerbot-sdk
Author: LinkerBot
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# LinkerBot Python SDK

A simple Python SDK example with two utility methods.

## Installation

```bash
pip install linkerbot-sdk
```

## Usage

```python
from linkerbot_sdk import LinkerBot

# Create an instance
bot = LinkerBot()

# Use the methods
result1 = bot.calculate_sum(5, 3)  # Returns 8
result2 = bot.generate_greeting("Alice")  # Returns "Hello, Alice!"
```

## Features

- Simple arithmetic operations
- Greeting message generation

## License

This project is licensed under the MIT License.
