Metadata-Version: 2.1
Name: num2heb
Version: 0.1.0
Summary: A Function to convert a number into words in Hebrew
Home-page: https://github.com/azoulaynoam/num2heb
Author: Noam Azoulay
Author-email: noam@na-systems.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# README.md

# My PyPI Package

A Python function for converting a number to hebrew words.

## Installation

You can install the package using pip:

```
pip install num2heb
```

## Usage

Here is a simple example of how to use the package:

```python
from num2heb import number_to_words

result = number_to_words(123)
print(result)  # Output: "מאה עשרים ושלושה"
```

## Contributing

If you would like to contribute to this package, please fork the repository and submit a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
