litellm/pyproject.toml

69 lines
1.4 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "litellm"
2024-01-19 11:37:40 +08:00
version = "1.18.4"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
2023-12-29 16:05:57 +08:00
python = ">=3.8.1,<3.9.7 || >3.9.7"
openai = ">=1.0.0"
python-dotenv = ">=0.2.0"
2023-09-25 22:33:23 +08:00
tiktoken = ">=0.4.0"
importlib-metadata = ">=6.8.0"
2023-09-26 00:15:50 +08:00
tokenizers = "*"
2023-09-27 04:30:35 +08:00
click = "*"
2023-10-04 12:05:20 +08:00
jinja2 = "^3.1.2"
aiohttp = "*"
requests = "^2.31.0"
2023-09-27 04:30:35 +08:00
2023-12-28 15:29:27 +08:00
uvicorn = {version = "^0.22.0", optional = true}
2024-01-10 20:17:24 +08:00
gunicorn = {version = "^21.2.0", optional = true}
2023-12-01 07:23:34 +08:00
fastapi = {version = "^0.104.1", optional = true}
backoff = {version = "*", optional = true}
pyyaml = {version = "^6.0.1", optional = true}
2023-12-01 07:23:34 +08:00
rq = {version = "*", optional = true}
2023-12-28 15:29:27 +08:00
orjson = {version = "^3.9.7", optional = true}
streamlit = {version = "^1.29.0", optional = true}
2023-12-01 07:23:34 +08:00
[tool.poetry.extras]
proxy = [
2024-01-10 20:17:24 +08:00
"gunicorn",
2023-12-01 07:23:34 +08:00
"uvicorn",
"fastapi",
"backoff",
"pyyaml",
2023-12-01 11:50:47 +08:00
"rq",
"orjson",
2024-01-01 11:53:34 +08:00
]
2023-12-02 11:36:06 +08:00
extra_proxy = [
"prisma",
"azure-identity",
"azure-keyvault-secrets",
"google-cloud-kms",
"streamlit",
"resend"
2023-12-02 11:36:06 +08:00
]
2023-12-03 03:32:15 +08:00
2023-09-27 04:30:35 +08:00
[tool.poetry.scripts]
litellm = 'litellm:run_server'
2023-12-22 15:14:54 +08:00
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
2023-12-22 15:38:19 +08:00
black = "^23.12.0"
2023-12-22 16:25:57 +08:00
pytest = "^7.4.3"
2023-12-22 15:14:54 +08:00
[build-system]
requires = ["poetry-core", "wheel"]
build-backend = "poetry.core.masonry.api"
2023-10-06 13:15:23 +08:00
[tool.commitizen]
2024-01-19 11:37:40 +08:00
version = "1.18.4"
version_files = [
"pyproject.toml:^version"
]
2023-10-06 13:15:23 +08:00