-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
41 lines (38 loc) · 1.33 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "videollama2"
version = "1.0"
authors = [
{name = "Zesen Cheng", email = "cyanlaser@stu.pku.edu.cn"},
{name = "Hang Zhang"},
{name = "Xin Li"},
]
description = "Release of VideoLLaMA2"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"torch==2.2.0", "torchvision==0.17.0",
"transformers==4.40.0", "tokenizers==0.19.1",
"deepspeed==0.13.1", "accelerate==0.26.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", "pysubs2",
"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==3.50.0", "gradio_client==0.6.1", "httpx==0.24.1",
"requests", "openai", "uvicorn", "fastapi", "tensorboard", "wandb", "tabulate"
]
[project.urls]
"Homepage" = "https://github.com/DAMO-NLP-SG/VideoLLaMA2"
"Bug Tracker" = "https://github.com/DAMO-NLP-SG/VideoLLaMA2/issues"
[tool.pdm.build]
excludes = ["./.git"]
package-dir = "."
includes = ["./videollama2"]