-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (63 loc) · 1.29 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
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
[tool.poetry]
name = "td_translation"
description = "Technical Depth Translation Package."
version = "0.0.1"
authors = [
"Stefan Falk"
]
packages = [{ include = "technical_depth", from = "src" }]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--durations=10 --color=yes --code-highlight=yes -rA"
testpaths = [
"tests"
]
[tool.poetry.dependencies]
python = "~3.9"
tensorflow = "~2.8.0"
pydantic = "~1.9.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-xdist = "^2.2.1"
pytest-cov = "^2.11.1"
coverage = { extras = ["all"], version = "^5.5" }
pre-commit = "^2.12.1"
tqdm = "*"
psutil = "~5.9.0"
regex = "~2022.3.15"
tensorflow-text = "~2.8.0"
tf-models-official = "~2.8.0"
tensorboard_plugin_profile = "~2.8.0"
sacrebleu = "~2.0.0"
[tool.coverage.run]
source = ["src"]
[tool.coverage.report]
skip_covered = true
skip_empty = true
[tool.isort]
profile = "black"
line_length = 120
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["src/", "tests"]
filter_files = true
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| resources
| dist
)/
'''