pyproject.toml 697 B

1234567891011121314151617181920212223242526272829
  1. [tool.poetry]
  2. name = "gguf"
  3. version = "0.2.1"
  4. description = "Write ML models in GGUF for GGML"
  5. authors = ["GGML <ggml@ggml.ai>"]
  6. packages = [
  7. {include = "gguf"},
  8. {include = "gguf/py.typed"},
  9. ]
  10. readme = "README.md"
  11. homepage = "https://ggml.ai"
  12. repository = "https://github.com/ggerganov/llama.cpp"
  13. keywords = ["ggml", "gguf", "llama.cpp"]
  14. classifiers = [
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ]
  19. [tool.poetry.dependencies]
  20. python = ">=3.8"
  21. numpy = ">=1.17"
  22. [tool.poetry.dev-dependencies]
  23. pytest = "^5.2"
  24. [build-system]
  25. requires = ["poetry-core>=1.0.0"]
  26. build-backend = "poetry.core.masonry.api"