-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
119 lines (114 loc) · 2.26 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "omni"
version = "0.0.1a1"
requires-python = ">=3.10"
description = "DreamLLM: Synergistic Multimodal Comprehension and Creation."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"av",
"tqdm",
"fire",
"ipdb",
"numpy",
"wandb",
"isort",
"pyzmq",
"black",
"boto3",
"scipy",
"awscli",
"psutil",
"dacite",
"joblib",
"loguru",
"openai",
"megfile",
"pandas",
"imageio",
"isodate",
"uvicorn",
"fastapi",
"pendulum",
"requests",
"openpyxl",
"beartype",
"tabulate",
"influxdb",
"colorama",
"jsonlines",
"shortuuid",
"netifaces",
"omegaconf",
"smart_open",
"ema_pytorch",
"Levenshtein",
"pycocotools",
"pyinstrument",
"editdistance",
"nvidia-ml-py3",
"opencv-python",
"markdown2[all]",
"pytorch-warmup",
"gateloop_transformer",
"peft==0.3.0",
"redis>=3.4.0",
"timm==0.6.13",
"httpx==0.24.0",
"einops==0.7.0",
"gradio==3.35.2",
"Flask>=0.10.1",
"kornia==0.7.0",
"msgpack>=1.0.0",
"deepspeed==0.12.6",
"datasets==2.16.1",
"netifaces>=0.10.6",
"diffusers==0.24.0",
"hydra-core==1.3.2",
"tokenizers==0.15.0",
"urllib3<2,>=1.21.1",
"pycocoevalcap==1.2",
"einops-exts==0.0.4",
"bitsandbytes==0.41.0",
"accelerate==0.23.0",
"transformers==4.35.2",
"sentencepiece==0.1.99",
"huggingface-hub==0.19.4",
"websocket-client==0.43.0",
]
[project.scripts]
smartrun = "omni:dispatch_torchrun"
[project.urls]
Homepage = "https://dreamllm.github.io/"
Repository = "https://github.com/RunpeiDong/DreamLLM"
"Bug Tracker" = "https://github.com/RunpeiDong/DreamLLM/issues"
Changelog = "https://github.com/RunpeiDong/DreamLLM/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["omni"]
[tool.black]
line-length = 128
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 128