pyproject.toml 591 B

1234567891011121314151617181920212223242526272829
  1. [project]
  2. name = "agent"
  3. version = "0.1.0"
  4. description = "ai-tagging"
  5. authors = [
  6. {name = "jiayongqiang", email = "15936285643@163.com"},
  7. ]
  8. dependencies = [
  9. "fastapi>=0.128.0",
  10. "uvicorn>=0.40.0",
  11. "sentence-transformers>=5.2.2",
  12. "python-multipart>=0.0.22",
  13. "requests>=2.32.5",
  14. "gmssl>=3.2.2",
  15. ]
  16. requires-python = ">=3.10"
  17. readme = "README.md"
  18. license = {text = "MIT"}
  19. [tool.pdm]
  20. build.package-dir = "src"
  21. distribution = true
  22. [tool.pdm.scripts]
  23. start = "uvicorn agent.main:app --port 8080"
  24. [build-system]
  25. requires = ["pdm-backend"]
  26. build-backend = "pdm.backend"