-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 781 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Setup script for the SOWLv2 package.
SOWLv2 combines OWLv2 and SAM 2 for text-prompted object segmentation.
"""
from setuptools import setup, find_packages
setup(
name="sowlv2",
version="0.2.1",
description="SOWLv2: Text-prompted object segmentation using OWLv2 and SAM 2",
author="Bolyos Csaba",
author_email="bladeszasza@gmail.com",
license="Apache-2.0",
packages=find_packages(),
install_requires=[
"torch>=1.13.0",
"transformers>=4.32.1",
"sam2>=1.1.0",
"opencv-python>=4.5.5.64",
"numpy>=1.21.0",
"Pillow>=9.0.0",
"pyyaml>=6.0",
"huggingface_hub>=0.15.0"
],
entry_points={
"console_scripts": [
"sowlv2-detect = sowlv2.cli:main"
]
}
)