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", ], )