-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
123 lines (108 loc) · 3.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[tool.poetry]
name = "firefox-translations"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pip-tools = "^7.3.0"
zstandard = "^0.22.0"
# https://github.com/mozilla/translations/issues/689
numpy = "<2"
[tool.poetry.group.pyright.dependencies]
pyright = "^1.1.390"
[tool.poetry.group.black.dependencies]
black = "^23.7.0"
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.13"
translations_parser = {path="./tracking/", develop=true}
[tool.poetry.group.opuscleaner.dependencies]
opuscleaner = "0.4.0"
[tool.poetry.group.taskcluster.dependencies]
taskcluster = "^56.0.3"
[tool.poetry.group.tensorboard.dependencies]
marian-tensorboard = "^0.2.1"
# This install group is for running local utilities.
[tool.poetry.group.utils.dependencies]
sacrebleu="2.4.2"
mtdata="0.4.1"
requests="^2.26.0"
humanize = "^4.9.0"
blessed = "^1.20.0"
huggingface-hub = "^0.20.3"
websocket_client ="^1.8.0"
PyGithub="2.4.0"
pyperclip="1.9.0"
ruamel-yaml = "^0.18.6"
taskcluster = "^56.0.3"
taskcluster-taskgraph = "^11.1.0"
# This install group is for running tests. Note that any dependencies in the
# pipeline are installed separately through the run_task test abstraction. This
# list is only for things imported directly in the tests.
[tool.poetry.group.tests.dependencies]
sacrebleu="2.4.2"
mtdata="0.4.1"
requests="^2.26.0"
pytest="7.4.3"
# TODO: ICU tokenizer commit, replace to PyPi version when released. Issue: https://github.com/mozilla/translations/issues/967
opustrainer = {git = "https://github.com/mozilla/OpusTrainer.git", rev="554b7202cecbb2eaae38819aebb6c5020685f670"}
requests-mock = "^1.11.0"
sh = "^2.0.6"
zstandard = "^0.22.0"
translations_parser = {path="./tracking/", develop=true}
taskcluster-taskgraph = "^11.1.0"
translations_taskgraph = {path="./taskcluster/", develop=true}
sacremoses = "0.1.1"
hanzidentifier = "1.2.0"
OpenCC = "1.1.9"
PyICU = "2.8.1"
[tool.black]
extend-exclude= "/3rd_party"
line-length = 99
# Match the rules from mozilla-central.
# https://searchfox.org/mozilla-central/source/pyproject.toml
[tool.ruff]
line-length = 99
# See https://beta.ruff.rs/docs/rules/ for a full list of rules.
select = [
"E", "W", # pycodestyle
"F", # pyflakes
"I", # isort
"PL", # pylint
]
ignore = [
# These are intentionally ignored.
"E741", # ambiguous-variable-name
"PLR09", # too-many-return-statements, too-many-branches, too-many-arguments, too-many-statements
"PLR2004", # magic-value-comparison
"PLW0603", # global-statement
"I001", # This is broken, see #614
# These are handled by black.
"E1", "E4", "E5", "W2", "W5"
]
exclude = [
"3rd_party"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
# Run tests outside of docker:
# task test -- -m "not docker_amd64
"docker_amd64: These tests require the local docker image.",
# Run only quick tests:
# task test -- -m "not slow
"slow: Tests that run slower"
]
[tool.pyright]
# When adding directories, add the entire subfolder to "include", and then
# exclude individual files that still need typing. This will make it so that all
# new files default to being typed.
include = [
"utils/**/*"
]
exclude = []
pythonVersion="3.10"