42 lines
651 B
INI
42 lines
651 B
INI
[isort]
|
|
line_length = 50
|
|
indent = 4
|
|
# 1/Vertical
|
|
multi_line_output = 3
|
|
lines_after_imports = 2
|
|
default_section = THIRDPARTY
|
|
known_localfolder = datalog
|
|
sections = STDLIB,LOCALFOLDER,FIRSTPARTY,THIRDPARTY
|
|
|
|
force_sort_within_sections = 1
|
|
force_alphabetical_sort_within_sections = 1
|
|
combine_as_imports = 1
|
|
include_trailing_comma = 1
|
|
|
|
[distutils]
|
|
index-servers = pypi
|
|
|
|
[reqman]
|
|
shitlist = [
|
|
pip,
|
|
pkg_resources,
|
|
setuptools,
|
|
]
|
|
|
|
[flake8]
|
|
extend-ignore = [
|
|
E203,
|
|
E227,
|
|
E266,
|
|
E306,
|
|
E501,
|
|
E731,
|
|
E741,
|
|
F403,
|
|
F405,
|
|
]
|
|
|
|
[pypi]
|
|
repository = https://pypi.python.org/pypi
|
|
username = $pypi_user
|
|
password = $pypi_pass
|