# # For licensing see accompanying LICENSE file. # Copyright (C) 2024 Apple Inc. All Rights Reserved. # import os from os import path from codecs import open from setuptools import setup, find_packages here = path.abspath(path.dirname(__file__)) with open(path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() def _read_reqs(relpath): fullpath = path.join(path.dirname(__file__), relpath) with open(fullpath) as f: return [ s.strip() for s in f.readlines() if (s.strip() and not s.startswith("#")) ] def get_files(path, relative_to="."): all_files = [] for root, _dirs, files in os.walk(path, followlinks=True): root = os.path.relpath(root, relative_to) for file in files: if file.endswith(".pyc"): continue all_files.append(os.path.join(root, file)) return all_files REQUIREMENTS = _read_reqs("requirements.txt") setup( name="mobileclip", version="0.1.0", description="MobileCLIP", url="https://github.com/apple/ml-mobileclip", author="", author_email="", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Education", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], # Note that this is a string of words separated by whitespace, not a list. keywords="Mobile CLIP pretrained", data_files=[ ("model-config", get_files("mobileclip/configs")), ], packages=find_packages(include=["mobileclip*"]), include_package_data=True, install_requires=REQUIREMENTS, python_requires=">=3.7", )