tabby/pyproject.toml

25 lines
501 B
TOML
Raw Normal View History

2023-03-16 07:38:03 +00:00
[tool.poetry]
name = "tabby"
version = "0.1.0"
description = ""
authors = ["Meng Zhang <meng@tabbyml.com>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
2023-03-16 09:26:43 +00:00
datasets = "^2.10.1"
transformers = "^4.27.1"
2023-03-16 11:22:24 +00:00
torch = "^2.0.0"
2023-03-20 14:12:05 +00:00
fastapi = "^0.95.0"
uvicorn = "^0.21.1"
tritonclient = {extras = ["all"], version = "^2.31.0"}
2023-03-16 07:38:03 +00:00
2023-03-16 09:26:43 +00:00
[tool.poetry.group.dev.dependencies]
2023-03-16 09:53:11 +00:00
pre-commit = "^3.1.1"
2023-03-16 09:26:43 +00:00
2023-03-16 07:38:03 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"