/ gguf-py / pyproject.toml
pyproject.toml
 1  [tool.poetry]
 2  name = "gguf"
 3  version = "0.9.0"
 4  description = "Read and write ML models in GGUF for GGML"
 5  authors = ["GGML <ggml@ggml.ai>"]
 6  packages = [
 7      {include = "gguf"},
 8      {include = "gguf/py.typed"},
 9      {include = "scripts"},
10  ]
11  readme = "README.md"
12  homepage = "https://ggml.ai"
13  repository = "https://github.com/ggerganov/llama.cpp"
14  keywords = ["ggml", "gguf", "llama.cpp"]
15  classifiers = [
16      "Programming Language :: Python :: 3",
17      "License :: OSI Approved :: MIT License",
18      "Operating System :: OS Independent",
19  ]
20  
21  [tool.poetry.dependencies]
22  python = ">=3.8"
23  numpy = ">=1.17"
24  tqdm = ">=4.27"
25  
26  [tool.poetry.dev-dependencies]
27  pytest = "^5.2"
28  
29  [build-system]
30  requires = ["poetry-core>=1.0.0"]
31  build-backend = "poetry.core.masonry.api"
32  
33  [tool.poetry.scripts]
34  gguf-convert-endian = "scripts:gguf_convert_endian_entrypoint"
35  gguf-dump = "scripts:gguf_dump_entrypoint"
36  gguf-set-metadata = "scripts:gguf_set_metadata_entrypoint"
37  gguf-new-metadata = "scripts:gguf_new_metadata_entrypoint"