| 1234567891011121314151617181920212223242526 |
- # Flask and extensions
- Flask==3.0.0
- Flask-SQLAlchemy==3.1.1
- Flask-RESTX==1.3.0
- Flask-CORS==4.0.0
- Flask-Bcrypt==1.0.1
- # Authentication
- PyJWT==2.8.0
- # Database
- SQLAlchemy>=2.0.36
- # Excel export
- openpyxl==3.1.2
- # Testing
- pytest==7.4.3
- hypothesis==6.92.1
- # Production server
- gunicorn==21.2.0; sys_platform != 'win32'
- waitress==2.1.2; sys_platform == 'win32'
- # PostgreSQL driver (not needed for local SQLite development on Windows)
- psycopg2-binary==2.9.9; sys_platform != 'win32'
|