ramgovindv's picture
Create setup.py
31db5e6 verified
raw
history blame contribute delete
247 Bytes
from setuptools import setup, find_packages
setup(
name="healthfunc",
version="0.1.0",
py_modules=["inference"], # This points to your inference.py
install_requires=[
"llama-cpp-python",
"huggingface_hub",
],
)