pyproject.toml 510 B

123456789101112131415161718192021222324
  1. [project]
  2. name = "AI-TAGGING"
  3. version = "0.1.0"
  4. description = "智能打标系统"
  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. requires-python = "==3.10.*"
  16. readme = "README.md"
  17. license = {text = "MIT"}
  18. [tool.pdm]
  19. distribution = false
  20. [tool.pdm.scripts]
  21. start = "uvicorn src.main:app --port 8080"