summaryrefslogtreecommitdiff
path: root/gguf-py/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'gguf-py/pyproject.toml')
-rw-r--r--gguf-py/pyproject.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml
index c6cb2c37..624e1cda 100644
--- a/gguf-py/pyproject.toml
+++ b/gguf-py/pyproject.toml
@@ -1,11 +1,12 @@
[tool.poetry]
name = "gguf"
-version = "0.4.6"
+version = "0.5.0"
description = "Write ML models in GGUF for GGML"
authors = ["GGML <ggml@ggml.ai>"]
packages = [
{include = "gguf"},
{include = "gguf/py.typed"},
+ {include = "scripts"},
]
readme = "README.md"
homepage = "https://ggml.ai"
@@ -27,3 +28,8 @@ pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
+
+[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"