forked from abetlen/ggml-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.24 KB
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
[build-system]
requires = ["scikit-build-core>=0.4.5"]
build-backend = "scikit_build_core.build"
[project]
name = "ggml_python"
version = "0.0.11"
description = "Python bindings for ggml"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Andrei Betlen", email = "abetlen@gmail.com" },
]
requires-python = ">=3.7"
dependencies = [
"numpy>=1.20.0",
"typing_extensions>=4.6.3"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.scikit-build]
wheel.packages = ["ggml"]
wheel.expand-macos-universal-tags = true
cmake.verbose = true
[project.optional-dependencies]
test = ["pytest"]
docs = ["mkdocs", "mkdocstrings[python]", "mkdocs-material", "pillow", "cairosvg"]
publish = ["build"]
convert = [
"accelerate==0.19.0",
"numpy==1.24.3",
"sentencepiece==0.1.98",
"torch==2.0.1",
"torchaudio==2.0.2",
"torchvision==0.15.2",
"transformers==4.29.2"
]
[project.urls]
Homepage = "https://github.com/abetlen/ggml-python"
Issues = "https://github.com/abetlen/ggml-python/issues"