source/setup.cfg

43 lines
651 B
INI
Raw Normal View History

2021-08-03 14:43:58 +00:00
[isort]
2021-09-20 00:05:22 +00:00
line_length = 50
2021-08-30 04:35:00 +00:00
indent = 4
2021-08-03 14:43:58 +00:00
# 1/Vertical
2021-08-30 04:35:00 +00:00
multi_line_output = 3
lines_after_imports = 2
default_section = THIRDPARTY
known_localfolder = datalog
2022-01-09 07:07:00 +00:00
sections = STDLIB,LOCALFOLDER,FIRSTPARTY,THIRDPARTY
2021-09-03 04:10:48 +00:00
2021-08-30 04:35:00 +00:00
force_sort_within_sections = 1
force_alphabetical_sort_within_sections = 1
combine_as_imports = 1
2021-09-20 00:05:22 +00:00
include_trailing_comma = 1
2021-08-03 14:43:58 +00:00
[distutils]
index-servers = pypi
2021-08-21 17:49:56 +00:00
[reqman]
2021-09-03 04:10:48 +00:00
shitlist = [
pip,
pkg_resources,
setuptools,
]
2021-08-30 04:35:00 +00:00
[flake8]
2021-08-30 07:06:21 +00:00
extend-ignore = [
2021-09-03 04:10:48 +00:00
E203,
E227,
2021-09-25 04:37:38 +00:00
E266,
2021-09-03 04:10:48 +00:00
E306,
E501,
E731,
E741,
F403,
F405,
]
2021-08-21 17:49:56 +00:00
2021-08-03 14:43:58 +00:00
[pypi]
repository = https://pypi.python.org/pypi
username = $pypi_user
password = $pypi_pass