-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=41"]
build-backend = "setuptools.build_meta"
[project]
name = "happy_vllm"
authors = [
{email = "[email protected]"},
{name = "Agence Data Services FT"}
]
description = "happy_vllm is a REST API for vLLM, production ready"
license = {file="LICENSE"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"vllm>=0.5.0.post1,<1.0",
"fastapi>=0.111.0,<1.0",
"pydantic_settings>=2.3.4,<3.0",
"uvicorn[standard]>=0.30.1,<1.0",
"prometheus_client>=0.20.0,<1.0",
"numpy>=1.26.4",
"jsonschema>=4.22.0,<5.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["production", "transformers", "api-rest", "serving", "mlops", "llm", "llm-serving", "vllm"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/France-Travail/happy_vllm"
Documentation = "https://france-travail.github.io/happy_vllm"
[tool.setuptools.dynamic]
version = {file = "version.txt"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["happy_vllm*"]
[project.scripts]
happy-vllm = "happy_vllm.launch:main"
[project.optional-dependencies]
test = ["httpx>=0.23,<1.0", "pytest>=8.2.0,<9.0", "pytest-cov>=5.0.0,<6.0", "mypy>=1.7.1,<2.0", "pytest-asyncio>=0.23.7,<1.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=happy_vllm"
filterwarnings = [
"ignore:The hookimpl CovPlugin.pytest_",
"ignore:IPython could not be loaded!"
]
[tool.isort]
profile = "black"
[tool.setuptools.package-data]
"happy_vllm.routers.schemas.examples" = ["*.json"]