pyproject.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [project]
  2. name = "deepcast"
  3. version = "0.0.1"
  4. description = "Automated podcast generation agent with deep research capabilities, powered by HelloAgents."
  5. authors = [
  6. { name = "JJason" }
  7. ]
  8. readme = "README.md"
  9. license = { text = "MIT" }
  10. requires-python = ">=3.10"
  11. dependencies = [
  12. "fastapi>=0.115.0",
  13. "hello-agents>=0.2.8",
  14. "tavily-python>=0.5.0",
  15. "python-dotenv==1.0.1",
  16. "requests>=2.31.0",
  17. "openai>=1.12.0",
  18. "uvicorn[standard]>=0.32.0",
  19. "ddgs>=9.6.1",
  20. "loguru>=0.7.3",
  21. "huggingface-hub>=1.3.3",
  22. "pydub>=0.25.1",
  23. "google-search-results>=2.4.2",
  24. ]
  25. [project.optional-dependencies]
  26. dev = ["mypy>=1.11.1", "ruff>=0.6.1"]
  27. [build-system]
  28. requires = ["setuptools>=73.0.0", "wheel"]
  29. build-backend = "setuptools.build_meta"
  30. [tool.setuptools]
  31. packages = ["src"]
  32. [tool.setuptools.package-data]
  33. "*" = ["py.typed"]
  34. [tool.ruff]
  35. lint.select = [
  36. "E", # pycodestyle
  37. "F", # pyflakes
  38. "I", # isort
  39. "D", # pydocstyle
  40. "D401", # First line should be in imperative mood
  41. "T201",
  42. "UP",
  43. ]
  44. lint.ignore = [
  45. "UP006",
  46. "UP007",
  47. "UP035",
  48. "D417",
  49. "E501",
  50. ]
  51. [tool.ruff.lint.per-file-ignores]
  52. "tests/*" = ["D", "UP"]
  53. [tool.ruff.lint.pydocstyle]
  54. convention = "google"
  55. [dependency-groups]
  56. dev = [
  57. "ruff>=0.12.7",
  58. ]