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
|
# This file is part of convertdate.
# http://github.com/fitnr/convertdate
# Licensed under the MIT license:
# http://opensource.org/licenses/MIT
# Copyright (c) 2020-2, fitnr <fitnr@fakeisthenewreal>
[build-system]
requires = ["setuptools>=60.5.0", "wheel"]
build-backend = 'setuptools.build_meta'
[tool.black]
line-length = 120
target-version = ["py39"]
include = 'py$'
skip-string-normalization = true
[tool.pylint.master]
fail-under = "8.77"
[tool.pylint.messages_control]
disable = [
"invalid-name",
"duplicate-code"
]
[tool.pylint.format]
max-line-length = 120
[tool.isort]
line_length = 120
|