-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
47 lines (41 loc) · 1.12 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fusion_bench"
description = "A Comprehensive Benchmark of Deep Model Fusion"
readme = "README.md"
version = "0.2.7"
authors = [{ name = "Anke Tang", email = "[email protected]" }]
license = { file = 'LICENSE' }
requires-python = ">= 3.10"
dependencies = [
"hydra-core",
"lightning",
"transformers",
"datasets",
"peft",
"huggingface_hub",
"matplotlib",
"tensorboard",
"tqdm",
"rich",
"scipy",
"h5py",
"pytest"
]
keywords = ["deep learning", "model fusion", "benchmark"]
[project.urls]
Repository = "https://github.com/tanganke/fusion_bench"
Homepage = "https://github.com/tanganke/fusion_bench"
Issues = "https://github.com/tanganke/fusion_bench/issues"
[project.scripts]
fusion_bench = "fusion_bench.scripts.cli:main"
fusion_bench_webui = "fusion_bench.scripts.webui:main"
[tool.setuptools]
include-package-data = true
package-dir = { "fusion_bench" = "fusion_bench" }
[tool.setuptools.package-data]
fusion_bench = ['../fusion_bench_config/**/*']
[tool.isort]
profile = "black"