13 lines
346 B
Python
13 lines
346 B
Python
"""
|
|
pyPhotoAlbum - A Python application for designing photo albums and exporting them to PDF
|
|
|
|
This package provides a PyQt6-based GUI application for creating photo album layouts
|
|
with support for templates, image manipulation, and PDF export.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "pyPhotoAlbum Developer"
|
|
|
|
# Version info
|
|
VERSION = __version__
|