|
@@ -1,12 +1,11 @@
|
|
|
[tool.poetry]
|
|
[tool.poetry]
|
|
|
name = "gguf"
|
|
name = "gguf"
|
|
|
-version = "0.13.0"
|
|
|
|
|
|
|
+version = "0.14.0"
|
|
|
description = "Read and write ML models in GGUF for GGML"
|
|
description = "Read and write ML models in GGUF for GGML"
|
|
|
authors = ["GGML <ggml@ggml.ai>"]
|
|
authors = ["GGML <ggml@ggml.ai>"]
|
|
|
packages = [
|
|
packages = [
|
|
|
{include = "gguf"},
|
|
{include = "gguf"},
|
|
|
{include = "gguf/py.typed"},
|
|
{include = "gguf/py.typed"},
|
|
|
- {include = "scripts"},
|
|
|
|
|
]
|
|
]
|
|
|
readme = "README.md"
|
|
readme = "README.md"
|
|
|
homepage = "https://ggml.ai"
|
|
homepage = "https://ggml.ai"
|
|
@@ -33,7 +32,7 @@ requires = ["poetry-core>=1.0.0"]
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
[tool.poetry.scripts]
|
|
|
-gguf-convert-endian = "scripts:gguf_convert_endian_entrypoint"
|
|
|
|
|
-gguf-dump = "scripts:gguf_dump_entrypoint"
|
|
|
|
|
-gguf-set-metadata = "scripts:gguf_set_metadata_entrypoint"
|
|
|
|
|
-gguf-new-metadata = "scripts:gguf_new_metadata_entrypoint"
|
|
|
|
|
|
|
+gguf-convert-endian = "gguf.scripts:gguf_convert_endian_entrypoint"
|
|
|
|
|
+gguf-dump = "gguf.scripts:gguf_dump_entrypoint"
|
|
|
|
|
+gguf-set-metadata = "gguf.scripts:gguf_set_metadata_entrypoint"
|
|
|
|
|
+gguf-new-metadata = "gguf.scripts:gguf_new_metadata_entrypoint"
|