Metadata-Version: 2.4
Name: pyqtjalalidatepicker
Version: 0.1.0
Summary: A Jalali date picker widget for PyQt5
Home-page: https://github.com/sadng11/pyqt-jalali-date-picker
Author: Sadegh Naghibzadeh
Author-email: sadng11@gmail.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
License-File: LICENSE
Requires-Dist: PyQt5>=5.15.0
Requires-Dist: jdatetime>=4.2.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

PyJalaliDatePicker
A Jalali (Persian) date picker widget for PyQt5 applications.
Installation
pip install pyjalalidatepicker

Usage
from pyjalalidatepicker import JalaliDatePicker
from PyQt5.QtWidgets import QApplication, QDialog, QVBoxLayout
import sys

app = QApplication(sys.argv)
window = QDialog()
layout = QVBoxLayout(window)

date_picker = JalaliDatePicker()
layout.addWidget(date_picker)

window.setLayout(layout)
window.show()
sys.exit(app.exec_())

Features

Displays a Jalali calendar with Persian month and weekday names.
Highlights the current day in red and selected day in green.
Red-colored labels for Thursday and Friday.
Easy integration with PyQt5 applications.

Requirements

Python 3.6+
PyQt5>=5.15.0
jdatetime>=4.2.0

License
MIT License
