requirements.txt 763 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # Authentication
  30. python-jose[cryptography]>=3.3.0
  31. passlib[bcrypt]>=1.7.4
  32. # Development
  33. pytest>=8.0.0
  34. pytest-asyncio>=0.23.0
  35. httpx>=0.26.0
  36. ruff>=0.2.0