Metadata-Version: 2.4
Name: aviro
Version: 0.1.0
Summary: A Python package for aviro functionality
Author-email: Your Name <your.email@example.com>
Project-URL: Homepage, https://github.com/yourusername/aviro
Project-URL: Bug Reports, https://github.com/yourusername/aviro/issues
Project-URL: Source, https://github.com/yourusername/aviro
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Dynamic: license-file

# Aviro

A Python package for aviro functionality.

## Installation

```bash
pip install aviro
```

## Usage

### Basic Usage

```python
from aviro import hello_aviro

# Basic greeting
print(hello_aviro())  # Output: Hello, World! Welcome to Aviro!

# Personalized greeting
print(hello_aviro("Alice"))  # Output: Hello, Alice! Welcome to Aviro!
```

### Using the Aviro Class

```python
from aviro.core import Aviro

# Create an Aviro instance
my_aviro = Aviro("MyBot")
print(my_aviro.greet("Alice"))  # Output: MyBot says: Hello, Alice!

# Get version information
from aviro.core import get_version
print(f"Aviro version: {get_version()}")
```

## Features

- Simple greeting functionality
- Customizable Aviro instances
- Easy-to-use API
- Type hints for better development experience

## Development

### Installing for Development

```bash
git clone https://github.com/yourusername/aviro.git
cd aviro
pip install -e .[dev]
```

### Running Tests

```bash
pytest
```

### Code Formatting

```bash
black src/
isort src/
flake8 src/
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Contributing

1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests
5. Run the test suite
6. Submit a pull request

## Changelog

### 0.1.0 (2024-01-XX)

- Initial release
- Basic greeting functionality
- Aviro class implementation
