Metadata-Version: 2.4
Name: warborne
Version: 0.1.0
Summary: A simple hashing library based on vowel counting
Author-email: Your Name <your.email@example.com>
Project-URL: Homepage, https://github.com/yourusername/warborne
Project-URL: Bug Tracker, https://github.com/yourusername/warborne/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# WarBorne

A simple hashing library that generates hashes based on vowel counting.

## Installation
```bash
pip install warborne
```
## Usage

```python
from warborne import WarBorne

# Create a WarBorne instance
wb = WarBorne()

# Hash a string
hash_value = wb.hash("Hello, World!")
print(hash_value)

# Hash a file
file_hash = wb.hash_file("path/to/file.txt")
print(file_hash)
```

## License MIT
