| 12345678910111213141516171819202122232425262728293031323334 |
- # Flask and extensions
- Flask==3.0.0
- Flask-SQLAlchemy==3.1.1
- Flask-Migrate==4.0.5
- Flask-CORS==4.0.0
- # Database - Updated for Python 3.14 compatibility
- SQLAlchemy>=2.0.25
- # Use psycopg2-binary for PostgreSQL, but make it optional for development
- # psycopg2-binary==2.9.9
- # Authentication
- PyJWT==2.8.0
- bcrypt==4.1.1
- # Task Queue
- celery==5.3.4
- redis==5.0.1
- # AWS SDK
- boto3>=1.34.0
- botocore>=1.34.0
- # Document processing
- python-docx==1.1.0
- # Utilities
- python-dotenv==1.0.0
- cryptography>=41.0.8
- # Testing
- pytest>=7.4.3
- pytest-cov==4.1.0
- hypothesis>=6.92.1
|