forked from larryliu0820/executorch-ggml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 833 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel", "ninja"]
build-backend = "setuptools.build_meta"
[project]
name = "executorch-ggml"
version = "0.1.0"
description = "ExecuTorch backend delegating to ggml"
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{name = "Mengwei Liu"}
]
requires-python = ">=3.10"
dependencies = [
"flatbuffers>=24.3.25",
"torch>=2.4.0",
"executorch>=1.1.0",
"optimum-executorch",
"transformers",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/larryliu0820/executorch-ggml"
Repository = "https://github.com/larryliu0820/executorch-ggml"
[tool.setuptools]
package-dir = {"" = "python"}
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools.package-data]
executorch_ggml = ["*.so", "*.dylib"]