-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.19 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
[build-system]
requires = [
"cmake", # For building binary targets in the wheel.
"pip>=23", # For building the pip package.
"setuptools>=63", # For building the pip package contents.
"wheel", # For building the pip package archive.
]
build-backend = "setuptools.build_meta"
[project]
name = "mllm"
dynamic = [
# version is in setup.py file
'version',
]
description = "fast and lightweight multimodal LLM inference engine for mobile and edge devices"
readme = "README.md"
authors = [
{name="chenghua.wang", email="[email protected]"},
]
keywords = ["mllm", "llm", "inference", "machine learning"]
# Python dependencies
requires-python = ">=3.10"
dependencies=[
"flatbuffers",
"numpy==1.21.3; python_version == '3.10'",
"numpy==1.23.2; python_version == '3.11'",
"numpy; python_version >= '3.12'",
"packaging",
"pandas==2.0.3; python_version == '3.10'",
"pandas; python_version >= '3.11'",
"pytest",
"pytest-html",
"pybind11-stubgen>=2.5.1",
]
[tool.setuptools.exclude-package-data]
"*" = ["*.pyc"]
[tool.usort]
# Do not try to put "first-party" imports in their own section.
first_party_detection = false
[tool.black]
target-version = ["py310", "py311", "py312"]