pyproject.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [build-system]
  2. requires = ["setuptools>=40.8.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "bfcl"
  6. version = "1.0.0"
  7. description = "Berkeley Function Calling Leaderboard (BFCL)"
  8. authors = [{ name = "Sky Computing Lab", email = "sky@cs.berkeley.edu" }]
  9. readme = "README.md"
  10. requires-python = ">=3.10"
  11. license = { "text" = "Apache 2.0" }
  12. dependencies = [
  13. "requests",
  14. "tqdm",
  15. "numpy==1.26.4",
  16. "pandas",
  17. "pathlib",
  18. "huggingface_hub",
  19. "pydantic>=2.8.2",
  20. "python-dotenv>=1.0.1",
  21. "tree_sitter==0.21.3",
  22. "tree-sitter-java==0.21.0",
  23. "tree-sitter-javascript==0.21.4",
  24. "openai==1.46.0",
  25. "mistralai==1.1.0",
  26. "anthropic==0.31.1",
  27. "cohere==5.5.8",
  28. "typer>=0.12.5",
  29. "tabulate>=0.9.0",
  30. "google-cloud-aiplatform>=1.70.0",
  31. ]
  32. [project.scripts]
  33. bfcl = "bfcl.__main__:cli"
  34. [tool.setuptools.packages.find]
  35. include = ["bfcl*"]
  36. [project.urls]
  37. Repository = "https://github.com/ShishirPatil/gorilla/tree/main/berkeley-function-call-leaderboard"
  38. [project.optional-dependencies]
  39. oss_eval_vllm = ["vllm==0.6.3"]
  40. oss_eval_sglang = ["sglang[all]==0.3.3.post1"]