requirements.txt 943 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. # STL Thumbnail Generation
  28. trimesh>=4.0.0
  29. matplotlib>=3.8.0
  30. fast-simplification>=0.1.0
  31. # System monitoring
  32. psutil>=6.0.0
  33. # Authentication
  34. PyJWT>=2.8.0
  35. passlib[bcrypt]>=1.7.4
  36. # Plate Detection (optional - enables build plate empty detection)
  37. opencv-python-headless>=4.8.0
  38. numpy>=1.24.0
  39. # Development
  40. pytest>=8.0.0
  41. pytest-asyncio>=0.23.0
  42. httpx>=0.26.0
  43. ruff>=0.2.0