-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 1.21 KB
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
[project]
name = "mbench"
version = "0.1.0"
description = "MBench — contract-driven, plugin-based evaluation pipeline for long video world models memory benchmarks."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
authors = [{name = "MBench Contributors"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.scripts]
mbench = "mbench.cli:main"
[project.urls]
Homepage = "https://peanutup.github.io/MBench-project/"
Repository = "https://github.com/study-overflow/MBench"
Documentation = "https://github.com/study-overflow/MBench#readme"
"Bug Tracker" = "https://github.com/study-overflow/MBench/issues"
Paper = "https://arxiv.org/abs/2606.00793"
Dataset = "https://huggingface.co/datasets/studyOverflow/MBench-Data"
Leaderboard = "https://huggingface.co/spaces/study-overflow/MBench_Leaderboard"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"