Metadata-Version: 2.4
Name: brujula
Version: 0.1.0
Summary: A simple hello world Python package
Project-URL: Homepage, https://github.com/yourusername/brujula
Project-URL: Repository, https://github.com/yourusername/brujula
Project-URL: Issues, https://github.com/yourusername/brujula/issues
Author-email: Your Name <your.email@example.com>
License: MIT
Keywords: example,hello,world
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Brujula

A simple hello world Python package.

## Installation

```bash
pip install brujula
```

## Usage

```python
from brujula import hello_world

# Use the hello_world function
message = hello_world()
print(message)  # Output: Hello, world!
```

## Development

This project uses [uv](https://github.com/astral-sh/uv) for dependency management.

### Setup

```bash
uv sync
```

### Run

```bash
uv run python main.py
```

## License

MIT License
