pyproject.toml 664 B

12345678910111213141516171819202122232425262728
  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. ]
  9. readme = "README.md"
  10. homepage = "https://ggml.ai"
  11. repository = "https://github.com/ggerganov/llama.cpp"
  12. keywords = ["ggml", "gguf", "llama.cpp"]
  13. classifiers = [
  14. "Programming Language :: Python :: 3",
  15. "License :: OSI Approved :: MIT License",
  16. "Operating System :: OS Independent",
  17. ]
  18. [tool.poetry.dependencies]
  19. python = ">=3.8"
  20. numpy = ">=1.17"
  21. [tool.poetry.dev-dependencies]
  22. pytest = "^5.2"
  23. [build-system]
  24. requires = ["poetry-core>=1.0.0"]
  25. build-backend = "poetry.core.masonry.api"