-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 968 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fbk-llm"
version = "0.0.1"
authors = [
{ name="FBK MT Unit", email="[email protected]" },
]
description = "FBK MT Unit Library for working with LLM and foundation models."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Apache-2.0",
"Operating System :: OS Independent",
"Topic :: Neural Networks :: LLM",
]
dependencies = [
"numpy", "seaborn", "argparse", "transformers[torch]>4.36", "torch", "pandas",
"datasets[audio]", "protobuf", "pyyaml"
]
[project.urls]
"Homepage" = "https://github.com/hlt-mt/fbk-llm"
"Bug Tracker" = "https://github.com/hlt-mt/fbk-llm/issues"
[project.optional-dependencies]
dev = ["flake8", "pytest", "requests"]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
whisper-gen = "speech_foundation_models.cli.whisper_gen:cli_script"