ramgovindv commited on
Commit
31db5e6
·
verified ·
1 Parent(s): ff6e4b2

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +11 -0
setup.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="healthfunc",
5
+ version="0.1.0",
6
+ py_modules=["inference"], # This points to your inference.py
7
+ install_requires=[
8
+ "llama-cpp-python",
9
+ "huggingface_hub",
10
+ ],
11
+ )