forked from tensorflow/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (31 loc) · 889 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
[tool.black]
target-version = ['py35', 'py36', 'py37']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| tensorflow_addons/losses/__init__.py
| tensorflow_addons/losses/focal_loss.py
| tensorflow_addons/losses/giou_loss.py
| tensorflow_addons/losses/giou_loss_test.py
| tensorflow_addons/metrics/multilabel_confusion_matrix.py
| tensorflow_addons/metrics/r_square.py
| tensorflow_addons/optimizers/__init__.py
| tensorflow_addons/optimizers/lookahead.py
| tensorflow_addons/optimizers/moving_average.py
| tensorflow_addons/optimizers/weight_decay_optimizers.py
| tensorflow_addons/text/__init__.py
| tensorflow_addons/text/crf.py
| tensorflow_addons/text/crf_test.py
)
'''