-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.53 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "videollama3"
version = "1.0"
authors = [
{name = "Boqiang Zhang", email = "cyril@mail.ustc.edu.cn"},
{name = "Kehan Li", email = "kehanli@stu.pku.edu.cn"},
{name = "Zesen Cheng", email = "cyanlaser@stu.pku.edu.cn"},
{name = "Yuming Jiang"},
{name = "Hang Zhang"},
{name = "Xin Li"},
]
description = "Release of VideoLLaMA2"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"torch==2.4.0", "torchvision==0.19.0", "datasets==2.21.0",
"transformers==4.46.3", "tokenizers==0.20.3",
"deepspeed==0.15.4", "accelerate==1.0.1",
"peft==0.4.0", "timm==1.0.3", "numpy==1.24.4",
"decord==0.6.0", "imageio==2.34.0", "imageio-ffmpeg==0.4.9",
"moviepy==1.0.3", "opencv-python==4.6.0.66", "pyarrow", "pysubs2", "ffmpeg-python",
"scikit-learn==1.2.2", "huggingface_hub==0.23.4", "sentencepiece==0.1.99",
"shortuuid", "einops==0.6.1", "einops-exts==0.0.4",
"bitsandbytes==0.43.0", "pydantic>=2.0", "markdown2[all]",
"gradio", "gradio_client", "httpx==0.24.1",
"requests", "openai", "uvicorn", "fastapi", "tensorboard", "wandb", "tabulate", "Levenshtein"
]
[project.urls]
"Homepage" = "https://github.com/DAMO-NLP-SG/VideoLLaMA3"
"Bug Tracker" = "https://github.com/DAMO-NLP-SG/VideoLLaMA3/issues"
[tool.pdm.build]
excludes = ["./.git"]
package-dir = "."
includes = ["./videollama3"]