-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "sam_audio"
version = "0.1.0"
description = "Segment Anything Audio"
authors = [
{ name="Andros Tjandra", email="androstj@meta.com" },
{ name="Ann Lee", email="annl@meta.com" },
{ name="Bowen Shi", email="bshi@meta.com" },
{ name="Julius Richter", email="jrichter@meta.com" },
{ name="Matt Le", email="mattle@meta.com" },
{ name="Yi-Chiao Wu", email="yichiaowu@meta.com" },
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.14"
dependencies = [
"audiobox_aesthetics",
"dacvae @ git+https://github.com/facebookresearch/dacvae.git@main",
"einops",
"imagebind @ git+https://github.com/facebookresearch/ImageBind.git@main",
"laion-clap @ git+https://github.com/lematt1991/CLAP.git@main",
"numpy",
"nvidia-cuda-nvrtc",
"nvidia-cuda-runtime",
"perception-models @ git+https://github.com/facebookresearch/perception_models.git@unpin-deps",
"pydub",
"setuptools<81",
"torch==2.10.0",
"torchaudio==2.10.0",
"torchcodec==0.10.0",
"torchdiffeq",
"torchvision==0.25.0",
"transformers>=4.54.0",
]
[project.optional-dependencies]
api = [
"fastapi",
"python-multipart",
"uvicorn[standard]",
]
[project.scripts]
sam-audio-api = "sam_audio.api:main"
[dependency-groups]
dev = [
"ruff",
"wheel",
]
[tool.setuptools.packages.find]
include = ["sam_audio*"]
[tool.ruff]
target-version = "py314"
lint.select=[
"B",
"C",
"E",
"W",
"F",
"I",
]
lint.ignore = [
"E501",
"E731",
"C901",
"B006",
]
[project.urls]
Homepage = "https://github.com/facebookresearch/sam-audio"
Repository = "https://github.com/facebookresearch/sam-audio"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"