pyproject.toml 810 B

12345678910111213141516171819202122232425262728293031323334
  1. [build-system]
  2. requires = ["setuptools>=68.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "long-articles-agentic-supply"
  6. version = "0.1.0"
  7. description = "需求驱动的 Agentic 长文供给架构核心 —— 数据库连接池、异步任务调度、HTTP 客户端、可观测性等通用基座"
  8. requires-python = ">=3.11"
  9. dependencies = [
  10. "aiomysql>=0.2.0",
  11. "asyncpg>=0.29",
  12. "aiohttp>=3.9",
  13. "pydantic>=2.0",
  14. "pydantic-settings>=2.0",
  15. "dependency-injector>=4.0",
  16. "aliyun-log-python-sdk>=0.9",
  17. "tenacity>=8.0",
  18. "fake-useragent>=1.4",
  19. "requests>=2.31",
  20. ]
  21. [project.optional-dependencies]
  22. server = [
  23. "quart>=0.19",
  24. "hypercorn>=0.17",
  25. "quart-cors>=0.8",
  26. ]
  27. dev = [
  28. "tqdm>=4.66",
  29. ]
  30. [tool.setuptools.packages.find]
  31. include = ["src*"]