from setuptools import setup, find_packages setup( name="rpa_vision_v3", version="0.1.0", packages=find_packages(exclude=("tests", "tests.*")), install_requires=[ "numpy", "pillow", "faiss-cpu", "scikit-learn", "open_clip_torch", ], )