Metadata-Version: 2.4
Name: harilib
Version: 0.1.0
Summary: Format numbers in Indian format like 12,34,567
Home-page: https://github.com/yourusername/harilib
Author: Your Name
Author-email: your_email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# harilib

A simple Python package to format numbers into Indian number system (e.g., 12,34,567).

## Example

```python
from harilib import indian_format

print(indian_format(1234567890))  # Output: 1,23,45,67,890
