-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (37 loc) · 1019 Bytes
/
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
[project]
name = "vllm-detector-adapter"
version = "0.0.1"
authors = [
{ name="Gaurav Kumbhat", email="[email protected]" },
{ name="Evaline Ju", email="[email protected]" },
]
description = "A lightweight adapter layer that provides detector APIs on top of vllm"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"vllm @ git+https://github.com/vllm-project/[email protected] ; sys_platform == 'darwin'",
"vllm>=0.7.1 ; sys_platform != 'darwin'",
]
[project.optional-dependencies]
vllm-tgis-adapter = [
"vllm-tgis-adapter>=0.5.3,<0.5.4"
]
## Dev Extra Sets ##
dev-test = [
"pytest-asyncio>=0.21.0,<0.24",
"pytest-cov>=2.10.1,<6.0",
"pytest-html>=3.1.1,<5.0",
"pytest>=6.2.5,<8.0",
"wheel>=0.38.4",
]
dev-fmt = [
"ruff==0.4.7",
"pre-commit>=3.0.4,<4.0",
"pydeps>=1.12.12,<2",
]
[tool.setuptools.packages.find]
where = [""]
include = ["vllm_detector_adapter", "vllm_detector_adapter*"]