pyproject.toml 429 B

123456789101112131415161718
  1. [project]
  2. name = "pptx-to-transcript"
  3. version = "0.1.0"
  4. description = "Convert PowerPoint presentations to transcripts with AI-powered analysis"
  5. requires-python = ">=3.12"
  6. dependencies = [
  7. "pandas>=2.3.1",
  8. "pillow>=11.3.0",
  9. "python-pptx>=1.0.2",
  10. "pymupdf>=1.24.0",
  11. "numpy>=2.3.2",
  12. "python-dotenv>=1.0.0",
  13. "tqdm>=4.66.0",
  14. "llama-api-client>=0.1.0",
  15. "pyyaml>=6.0.0",
  16. "matplotlib>=3.10.5",
  17. ]