-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kavya"
version = "0.2.0"
description = "A framework for serving and evaluating large language model routers."
readme = "README.md"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
'importlib-metadata; python_version<"3.10"',
'pyyaml',
'pydantic',
'openai',
'litellm==1.67.0'
]
[project.optional-dependencies]
serve = ["fastapi", "shortuuid", "uvicorn"]
eval = ["matplotlib", "pandarallel", "sglang", 'tiktoken']
dev = ["black", "isort", "pre-commit"]
[project.urls]
"Homepage" = "https://github.com/dxpr/Kavya"
"Bug Tracker" = "https://github.com/dxpr/Kavya"
[tool.isort]
profile = "black"
[tool.setuptools.packages.find]
exclude = ["assets*", "benchmarks*"]
[tool.wheel]
exclude = ["assets*", "benchmarks*"]
[tool.setuptools.package-data]
"kavya" = ["docs/litellm/**/*", "docs/pydantic/**/*", "docs/google-cloud-sql/**/*"]
[tool.setuptools]
script-files = ["scripts/download_docs.py"]
[project.scripts]
download-litellm-docs = "scripts.download_docs:download_all_docs"