-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "SubSONAR"
version = "1.0"
authors = [
{ name="Marco Gaido", email="[email protected]" }
]
description = "Evaluate the quality of SRT files using the multilingual multimodal SONAR model."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"sonar-space",
"argparse",
"srt",
"torchaudio",
"numpy>=1.21",
"torch>=1.9",
"tqdm",
"fairseq2"
]
[project.urls]
"Homepage" = "https://github.com/hlt-mt/subsonar"
"Bug Tracker" = "https://github.com/hlt-mt/subsonar/issues"
[project.optional-dependencies]
dev = ["flake8"]
release = ["build", "twine", "sphinx", "sphinx-rtd-theme"]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
subsonar = "subsonar.main:cli_script"