Metadata-Version: 2.1
Name: hexcalculator
Version: 0.1.1
Summary: A calculator that converts HEX numbers to base 10
License: MIT
Author: Peter Chay
Author-email: peterchay88@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pytest (>=8.3.5,<9.0.0)
Description-Content-Type: text/markdown

# Hex Calculator

This package provides simple logic that allows you to convert hex strings to base 10 int numbers.

## Example Usage
```python
from hexcalculator.hex_calculator import HexConverter

hex_calculator = HexConverter()
result = hex_calculator.hex_to_int("ABF")
print(result)  # Output: 2751
```
