forked from autogluon/autogluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 984 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.black]
line-length = 119
target-version = ['py38', 'py39', 'py310']
[tool.isort]
known_first_party = "autogluon"
known_third_party = [
"gluonts",
"mxnet",
"networkx",
"numpy",
"pandas",
"psutil",
"pytest",
"scipy",
"sklearn",
"sktime",
"statsmodels",
"tqdm",
"Pillow",
"boto3",
"requests",
"timm",
"torch",
"torchvision",
"fairscale",
"scikit-image",
"smart_open",
"lightning",
"torchmetrics",
"transformers",
"nptyping",
"omegaconf",
"pytorch-metric-learning",
"nlpaug",
"nltk",
]
line_length = 119
profile = "black"
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.ipynb,*.csv,kaggle_feedback_prize'
#
ignore-words-list = 'mape,ans,2st,fo,nd,te,fpr,coo,rouge,SME'
[tool.ruff]
lint.ignore = [
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`
"E722", # Do not use bare `except`
]
extend-exclude = ["__init__.py"]