tabby/pyproject.toml

33 lines
736 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-20 14:12:05 +00:00
fastapi = "^0.95.0"
uvicorn = "^0.21.1"
tritonclient = {extras = ["all"], version = "^2.31.0"}
streamlit = "^1.20.0"
loguru = "^0.6.0"
gitup = "^0.5.1"
toml = "^0.10.2"
gitpython = "^3.1.31"
peft = {git = "https://github.com/huggingface/peft.git", rev = "v0.2.0"}
duckdb = "^0.7.1"
torch = "^2.0.0"
2023-03-29 12:47:44 +00:00
bitsandbytes = "^0.37.2"
meilisearch = "^0.26.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"