pyproject.toml 614 B

123456789101112131415161718192021222324
  1. [build-system]
  2. requires = ["setuptools>=68"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "vendor-guard-course"
  6. version = "0.1.0"
  7. description = "Deep Agents 供应商准入尽调教学项目"
  8. readme = "README.md"
  9. requires-python = ">=3.11"
  10. dependencies = [
  11. "deepagents>=0.5.4",
  12. "langchain-openai>=1.0",
  13. "langsmith>=0.4",
  14. "python-dotenv>=1.0",
  15. ]
  16. [project.scripts]
  17. vendor-guard = "vendor_guard.cli:main"
  18. vendor-guard-create-dataset = "vendor_guard.langsmith_dataset:main"
  19. vendor-guard-evaluate = "vendor_guard.langsmith_evaluation:main"
  20. [tool.setuptools.packages.find]
  21. where = ["src"]