-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (78 loc) · 2.09 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
82
83
[project]
name = "mmda"
version = "0.1.1"
authors = [
{ name="Po-han Li", email="pohanli@utexas.edu" },
]
description = "Multimodal Feature Extraction"
readme = "README.md"
requires-python = ">=3.9,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["mmda"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.poetry]
name = "mmda"
version = "0.1.1"
authors = ["Po-han Li <pohanli@utexas.edu>"]
packages = [{include = "mmda"}]
description = "Multimodal Data Alignment"
readme = "README.md"
[tool.poetry.dependencies]
matplotlib = "*"
python = ">=3.9,<3.13"
ruff = "*"
numpy = "^1.19"
pandas = "*"
argparse = "*"
flake8 = "*"
black = "*"
scikit-learn = "*"
scikit-image = "*"
pillow = "*"
h5py = "*"
pyyaml = "*"
hydra-core = "1.3.2"
hydra-joblib-launcher = "1.2.0"
protobuf = "3.20.*"
torchvision = "*"
torchaudio = "*"
ipython = "^8.15.0"
scipy = "*"
cca-zoo = "^2.5.0"
ipykernel = "^6.29.3"
jupyter = "^1.0.0"
gpustat = "*"
datasets = "^2.18.0"
transformers = "^4.13.0"
soundfile = "*"
librosa = "*"
wget = "*"
wavfile = "*"
resampy = "*"
open-clip-torch = "2.24.0"
sentence-transformers = "2.4.0"
yt-dlp = "*"
tqdm = "*"
timm = "*"
albumentations = "*"
kaggle = "*"
moviepy = "*"
# imagebind = {git = "https://github.com/facebookresearch/ImageBind"}
# LLaVA = {git = "https://github.com/haotian-liu/LLaVA.git"} # contradicting with imagebind
# chronos = {git = "https://github.com/amazon-science/chronos-forecasting.git"}
aeon = {git = "https://github.com/aeon-toolkit/aeon.git", branch = "main"}
kagglehub = "*"
seaborn = "*"
[project.optional-dependencies]
dev = ["black", "ruff", "mypy"]
test = ["pytest", "pytest-cov", "pytest-mock"]