Metadata-Version: 2.4
Name: siddu
Version: 0.1.0
Summary: A sample Python package by Siddu
Home-page: https://github.com/siddu2402
Author: Nikhilesh
Author-email: Nikhilesh <siddunikhilesh517@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/siddu2402/siddu
Project-URL: Bug Tracker, https://github.com/siddu2402/siddu/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Siddu

A Python package that can be installed globally with `pip install siddu`.

## Installation

```bash
pip install siddu
```

## Usage

After installation, you can use the package in two ways:

### As a Command-Line Tool

```bash
siddu
siddu --name "Your Name"
```

### As a Python Library

```python
from siddu import greet, add_numbers

# Use the greet function
message = greet("World")
print(message)

# Use the add_numbers function
result = add_numbers(5, 3)
print(f"Result: {result}")
```

## Features

- Simple greeting functionality
- Basic arithmetic operations
- Command-line interface
- Easy to extend and customize

## Development

To install in development mode:

```bash
pip install -e .
```

## Testing

```bash
python -m pytest tests/
```

## License

MIT License - see LICENSE file for details.

## Author

Your Name - your.email@example.com
