ramgovindv commited on
Commit
4d0fbef
·
verified ·
1 Parent(s): 356d161

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +24 -0
pyproject.toml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.backends.legacy:build"
4
+
5
+ [project]
6
+ name = "health-function-lm"
7
+ version = "0.1.0"
8
+ description = "Easy inference wrapper for the health function-calling LLaMA 3.2 GGUF model."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ dependencies = [
13
+ "llama-cpp-python>=0.2.0",
14
+ ]
15
+
16
+ [project.optional-dependencies]
17
+ ui = ["gradio>=4.0"]
18
+
19
+ [project.scripts]
20
+ health-fn = "health_function_lm.cli:main"
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["."]
24
+ include = ["health_function_lm*"]