forked from facebookresearch/sam2
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
55 lines (45 loc) · 1.14 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
description = "CPU compatible fork of the official SAMv2 implementation"
name = "samv2"
version = "0.0.4"
authors = [{ name = "Saurav Maheshkar", email = "[email protected]" }]
readme = ".github/README.md"
requires-python = ">=3.8"
keywords = [
"deep-learning",
"pytorch",
]
dependencies = [
"torch>=2.3.1",
"torchvision>=0.18.1",
"numpy>=1.24.4",
"tqdm>=4.66.1",
"hydra-core>=1.3.2",
"iopath>=0.1.10",
"pillow>=9.4.0",
]
[project.optional-dependencies]
test = ["pytest"]
dev = ["black", "isort", "pre-commit>=2.18.0"]
all = ["samv2[test,dev]"]
[project.urls]
homepage = "https://github.com/SauravMaheshkar/samv2"
repository = "https://github.com/SauravMaheshkar/samv2"
[tool.flit.module]
name = "sam2"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["W605"]
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]
markers = ["full: Run the full test suite (will download all model weights)"]