-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (55 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fairseq"
version = "2024.07.09"
dynamic = ["readme"]
authors = [
]
description = "Python code for Fairseq maintained by ESPnet"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.6"
license = { "text" = "Apache Software License" }
dependencies = [
"cffi",
"cython",
"hydra-core>=1.0.7",
"omegaconf>2.1",
"numpy>=1.21.3",
"regex",
"sacrebleu>=1.4.12",
"torch>=1.10",
"tqdm",
"bitarray",
"torchaudio",
"scikit-learn",
"packaging",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.urls]
Homepage = "https://github.com/espnet/fairseq"
[tool.setuptools.packages.find]
include = ["fairseq*"]
[project.optional-dependencies]
test = [
"flake8",
"flake8-docstrings",
"black",
"pytest",
"pytest-timeouts",
"pytest-pythonpath",
"pytest-cov",
"pycodestyle",
]
all = [
"fairseq[test]",
]