-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.01 KB
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
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sowlv2"
version = "0.2.1"
authors = [
{ name="Csaba Bolyos", email="bladeszasza@gmail.com" },
]
description = "SOWLv2: Text-prompted object segmentation using OWLv2 and SAM 2"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"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"
]
[project.urls]
Homepage = "https://github.com/bladeszasza/SOWLv2"
Issues = "https://github.com/bladeszasza/SOWLv2/issues"
[project.scripts]
sowlv2-detect = "sowlv2.cli:main"