pyproject.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [project]
  2. name = "pixelle-video"
  3. version = "0.1.15"
  4. description = "AI-powered video creation platform - Part of Pixelle ecosystem"
  5. authors = [
  6. {name = "Pixelle.AI"}
  7. ]
  8. readme = "README.md"
  9. requires-python = ">=3.11"
  10. license = {text = "Apache-2.0"}
  11. dependencies = [
  12. "fastmcp>=2.0.0",
  13. "pydantic>=2.0.0",
  14. "loguru>=0.7.0",
  15. "pyyaml>=6.0.0",
  16. "edge-tts==7.2.7",
  17. "certifi>=2025.10.5",
  18. "ffmpeg-python>=0.2.0",
  19. "httpx>=0.28.1",
  20. "pillow>=10.0.0,<12",
  21. "streamlit>=1.40.0",
  22. "openai>=2.6.0",
  23. "fastapi>=0.115.0",
  24. "uvicorn[standard]>=0.32.0",
  25. "python-multipart>=0.0.12",
  26. "comfykit>=0.1.12",
  27. "beautifulsoup4>=4.14.2",
  28. "moviepy==1.0.3",
  29. "playwright>=1.58.0",
  30. ]
  31. [project.optional-dependencies]
  32. dev = [
  33. "pytest>=8.0.0",
  34. "pytest-asyncio>=0.23.0",
  35. "ruff>=0.6.0",
  36. ]
  37. [build-system]
  38. requires = ["hatchling"]
  39. build-backend = "hatchling.build"
  40. [tool.ruff]
  41. line-length = 100
  42. target-version = "py311"
  43. [tool.ruff.lint]
  44. select = ["E", "F", "I"]
  45. ignore = ["E501"]
  46. [tool.pytest.ini_options]
  47. asyncio_mode = "auto"
  48. testpaths = ["tests"]