pyproject.toml 921 B

1234567891011121314151617181920212223242526272829303132333435
  1. [tool.poetry]
  2. name = "gguf"
  3. version = "0.7.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. [tool.poetry.dependencies]
  21. python = ">=3.8"
  22. numpy = ">=1.17"
  23. [tool.poetry.dev-dependencies]
  24. pytest = "^5.2"
  25. [build-system]
  26. requires = ["poetry-core>=1.0.0"]
  27. build-backend = "poetry.core.masonry.api"
  28. [tool.poetry.scripts]
  29. gguf-convert-endian = "scripts:gguf_convert_endian_entrypoint"
  30. gguf-dump = "scripts:gguf_dump_entrypoint"
  31. gguf-set-metadata = "scripts:gguf_set_metadata_entrypoint"