CoolFace
Apppublic

aikenml/data_mining

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
setup.py19 linesDownload Raw Back to sam
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3 4# This source code is licensed under the license found in the5# LICENSE file in the root directory of this source tree.6 7from setuptools import find_packages, setup8 9setup(10    name="segment_anything",11    version="1.0",12    install_requires=[],13    packages=find_packages(exclude="notebooks"),14    extras_require={15        "all": ["matplotlib", "pycocotools", "opencv-python", "onnx", "onnxruntime"],16        "dev": ["flake8", "isort", "black", "mypy"],17    },18)19