2019-04-03 17:17:55 +00:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"setuptools",
|
|
|
|
"wheel",
|
|
|
|
]
|
2020-02-23 02:45:34 +00:00
|
|
|
|
2020-11-13 21:57:46 +00:00
|
|
|
[tool.isort]
|
|
|
|
known_first_party = [
|
2020-12-16 06:09:26 +00:00
|
|
|
"benchmarks",
|
2020-11-13 21:57:46 +00:00
|
|
|
"docs",
|
|
|
|
"pl_examples",
|
|
|
|
"pytorch_lightning",
|
|
|
|
"tests",
|
|
|
|
]
|
2021-02-03 20:21:19 +00:00
|
|
|
profile = "black"
|
2020-11-13 21:57:46 +00:00
|
|
|
line_length = 120
|
2021-01-03 22:13:22 +00:00
|
|
|
force_sort_within_sections = "False"
|
2020-12-16 06:09:26 +00:00
|
|
|
order_by_type = "False"
|
2021-06-02 15:19:10 +00:00
|
|
|
|
|
|
|
[tool.vulture]
|
|
|
|
exclude = ['pytorch_lightning/metrics']
|
|
|
|
make_whitelist = true
|
|
|
|
min_confidence = 95
|
|
|
|
paths = ["pytorch_lightning"]
|
|
|
|
ignore_names = [
|
|
|
|
"*_nb",
|
|
|
|
"*batch",
|
|
|
|
"*idx",
|
|
|
|
"*param*",
|
|
|
|
"cmd_line",
|
|
|
|
"kw",
|
|
|
|
"loc",
|
|
|
|
"mocked_device_count*",
|
|
|
|
"my_path",
|
|
|
|
"new_device",
|
|
|
|
"new_dtype",
|
|
|
|
"prediction",
|
|
|
|
"root",
|
|
|
|
"signum",
|
|
|
|
"torch_save",
|
|
|
|
"using_lbfgs",
|
|
|
|
]
|
|
|
|
sort_by_size = true
|