ramgovindv's picture
Create pyproject.toml
4d0fbef verified
raw
history blame contribute delete
565 Bytes
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "health-function-lm"
version = "0.1.0"
description = "Easy inference wrapper for the health function-calling LLaMA 3.2 GGUF model."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = [
"llama-cpp-python>=0.2.0",
]
[project.optional-dependencies]
ui = ["gradio>=4.0"]
[project.scripts]
health-fn = "health_function_lm.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["health_function_lm*"]