-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
35 lines (30 loc) · 1.1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "langport"
version = "0.3.11"
description = "A large language model serving platform."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"fastapi", "httpx", "pydantic<=1.10.13", "requests",
"rich>=10.0.0", "datasets>=2.14.5", "cachetools", "asyncache",
"shortuuid", "tokenizers>=0.14.1", "chatproto",
"transformers>=4.34.0", "uvicorn", "wandb", "tenacity>=8.2.2",
]
[project.optional-dependencies]
dev = ["black==23.3.0", "pylint==2.8.2"]
ggml = ["ctransformers"]
optimum = ["onnx", "onnxruntime", "optimum"]
[project.urls]
"Homepage" = "https://github.com/vtuber-plan/langport"
"Bug Tracker" = "https://github.com/vtuber-plan/langport/issues"
[tool.setuptools.packages.find]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
[tool.wheel]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]