-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.43 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
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ultraeval-audio"
version = "0.0.0"
description = "Evaluation framework for audio understanding and generation LLMs."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "UltraEval Contributors" }]
keywords = ["audio", "speech", "evaluation", "benchmark", "LLM", "TTS", "ASR"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
# Optional: declare a CLI entrypoint once installed (editable or wheel)
[project.scripts]
ultraeval-audio = "audio_evals.main:main"
[project.urls]
Homepage = "https://github.com/OpenBMB/UltraEval-Audio"
Issues = "https://github.com/OpenBMB/UltraEval-Audio/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["audio_evals*"]
exclude = ["tests*", "env*", "envs*", "raw*", "outputs*", "third_party*", "replication*"]
# If you later move YAML/data files under audio_evals/, configure them here.
[tool.setuptools.package-data]
audio_evals = ["**/*.yaml", "**/*.txt", "**/*.json", "**/*.md"]
[tool.setuptools.dynamic]
# NOTE: filenames keep the project's current spelling: "requirments*.txt"
dependencies = { file = ["requirements.txt"] }