requirements.txt 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Web Framework
  2. fastapi>=0.109.0
  3. uvicorn[standard]>=0.27.0
  4. # Database
  5. sqlalchemy>=2.0.0
  6. aiosqlite>=0.19.0
  7. greenlet>=3.0.0
  8. # Pydantic
  9. pydantic>=2.0.0
  10. pydantic-settings>=2.0.0
  11. # Bambu Lab Printer Communication
  12. paho-mqtt>=2.0.0
  13. aioftp>=0.22.0
  14. # Virtual Printer (emulates Bambu printer for slicer uploads)
  15. pyftpdlib>=2.0.0
  16. cryptography>=41.0.0
  17. # 3MF Processing (standard zipfile is sufficient for Bambu 3MF files)
  18. # Excel Export
  19. openpyxl>=3.1.0
  20. # Notifications
  21. pywebpush>=2.0.0
  22. # Utilities
  23. python-multipart>=0.0.6
  24. aiofiles>=23.0.0
  25. # QR Code generation
  26. qrcode[pil]>=7.4.0
  27. # System monitoring
  28. psutil>=6.0.0
  29. # STL thumbnail generation
  30. trimesh>=4.0.0
  31. matplotlib>=3.8.0
  32. # Authentication
  33. PyJWT>=2.8.0
  34. passlib[bcrypt]>=1.7.4
  35. # Plate Detection (optional - enables build plate empty detection)
  36. opencv-python-headless>=4.8.0
  37. numpy>=1.24.0
  38. # Development
  39. pytest>=8.0.0
  40. pytest-asyncio>=0.23.0
  41. httpx>=0.26.0
  42. ruff>=0.2.0