mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-02-06 11:11:36 +08:00
25 lines
593 B
TOML
25 lines
593 B
TOML
[tool.poetry]
|
|
name = "tensorrt-llm-bench"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["TensorRT-LLM Team"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10"
|
|
pytest = ">=8.4.2,<9.0.0"
|
|
pandas = ">=2.3.2,<3.0.0"
|
|
psutil = "^7.1.0"
|
|
pyyaml = "^6.0.3"
|
|
scipy = ">=1.11.0,<2.0.0"
|
|
|
|
[tool.pytest.ini_options]
|
|
# Set the root directory to current directory to avoid loading parent conftest.py
|
|
# This prevents import errors from upper level dependencies
|
|
rootdir = "."
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|