[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*"]