-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.53 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
[build-system]
requires = ["packaging~=24.2", "setuptools~=75.8", "wheel~=0.45"]
build-backend = "setuptools.build_meta"
[project]
name = "seamless-interaction"
dynamic = ["version"]
description = "Library for seamless interaction dataset"
authors = [
{name = "Meta AI | FAIR Seamless Team"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: CC BY-NC 4.0",
"Operating System :: OS Independent",
]
dependencies = [
"boto3>=1.38.27",
"datasets>=3.6.0",
"fsspec>=2025.3.0",
"jupyterlab>=4.4.3",
"librosa>=0.11.0",
"llvmlite>=0.43.0",
"mypy>=1.16.1",
"numpy>=1.26.0",
"opencv-python>=4.7.0.72",
"pandas>=1.5.1",
"plotly>=6.1.2",
"pre-commit>=4.2.0",
"pylance>=0.29.0",
"pytest>=8.4.1",
"requests>=2.32.0",
"ruff>=0.12.0",
"s3fs>=0.4.2",
"streamlit>=1.46.0",
"types-requests>=2.32.0",
"webdataset>=1.0.2",
"wget>=3.2",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["seamless_interaction*"]
[tool.setuptools.dynamic]
version = {attr = "seamless_interaction.__version__"}
[project.urls]
"Homepage" = "https://github.com/facebookresearch/seamless_interaction"
"Bug Tracker" = "https://github.com/facebookresearch/seamless_interaction"
[tool.mypy]
ignore_missing_imports = true
exclude = ["src/seamless_interaction/app/"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning"]