- Add pillow-heif dependency for iPhone photo support - Auto-convert HEIC to JPEG (browsers can't display HEIC) - Graceful error if pillow-heif not installed - Handles RGBA/P mode conversion to RGB 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
643 B
Plaintext
39 lines
643 B
Plaintext
# StarPunk Production Dependencies
|
|
# Python 3.11+ required
|
|
|
|
# Web Framework
|
|
Flask==3.0.*
|
|
|
|
# WSGI Server (Production)
|
|
gunicorn==21.2.*
|
|
|
|
# Content Processing
|
|
markdown==3.5.*
|
|
|
|
# Feed Generation
|
|
feedgen==1.0.*
|
|
|
|
# HTTP Client (for IndieAuth)
|
|
httpx==0.27.*
|
|
|
|
# Configuration Management
|
|
python-dotenv==1.0.*
|
|
|
|
# HTML Parsing (for IndieAuth endpoint discovery)
|
|
beautifulsoup4==4.12.*
|
|
|
|
# Microformats2 Parsing (v1.2.0)
|
|
mf2py==2.0.*
|
|
|
|
# Testing Framework
|
|
pytest==8.0.*
|
|
|
|
# System Monitoring (v1.1.2)
|
|
psutil==5.9.*
|
|
|
|
# Image Processing (v1.2.0, updated v1.4.2 for HEIC support)
|
|
Pillow==10.1.*
|
|
|
|
# HEIC/HEIF Support (v1.4.2 - iPhone photos)
|
|
pillow-heif==0.18.*
|