-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 838 Bytes
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
[project]
name = "aria"
version = "0.1.0"
description = ""
authors = [
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch==2.5.1",
"torchvision==0.20.1",
"accelerate==0.34.1",
"deepspeed==0.15.0",
"peft==0.12.0",
"sentencepiece==0.2.0",
"transformers==4.46.3",
"trl==0.9.6",
"pillow==10.4.0",
"wandb==0.18.1",
"decord==0.6.0",
"tqdm==4.66.5",
"pandas==2.2.2",
"matplotlib==3.9.2",
"fire==0.6.0",
]
[project.optional-dependencies]
dev = [
"black==24.8.0",
"autoflake==2.3.1",
"isort==5.13.2",
"pytest==8.3.3",
]
grouped_gemm = [
"grouped_gemm==0.1.6"
]
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["aria*"]