xqt's picture
UPD: added setup.py for installation
e312782
raw
history blame contribute delete
990 Bytes
from setuptools import setup, find_packages
setup(
name="SegmentAnything2Assist",
version="0.1",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"SAM-2 @ git+https://github.com/facebookresearch/segment-anything-2.git@7e1596c0b6462eb1d1ba7e1492430fed95023598",
"ultralytics @ git+https://github.com/THU-MIG/yolov10.git@cd2f79c70299c9041fb6d19617ef1296f47575b1",
"opencv-python==4.10.0.84",
],
author="xqt",
author_email="[email protected]",
description="A package to segment anything and assist in the process",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://huggingface.co/spaces/xqt/Segment-Anything-2-Assist",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8.0",
)