Metadata-Version: 2.4
Name: rentclc
Version: 1.0.0
Summary: A generic rent calculation library for Python projects.
Home-page: https://github.com/yourusername/rentcalc
Author: Aatmaja Karbhari
Author-email: youremail@example.com
Project-URL: Bug Tracker, https://github.com/yourusername/rentcalc/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# rentcalc
A generic rent calculation library for Python.

## Install:
pip install rentcalc

## Example:
from rentcalc import RentCalculator
from datetime import date

RentCalculator.auto_calculate(1200, "monthly", date(2025,1,1), date(2025,6,1))
