source/setup.cfg

41 lines
587 B
INI
Raw Normal View History

2021-08-03 14:43:58 +00:00
[isort]
2021-08-30 04:35:00 +00:00
line_length = 100
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
2021-08-30 07:06:21 +00:00
sections = [
FUTURE,
STDLIB,
LOCALFOLDER,
THIRDPARTY,
]
2021-08-30 04:35:00 +00:00
force_sort_within_sections = 1
force_alphabetical_sort_within_sections = 1
combine_as_imports = 1
2021-08-03 14:43:58 +00:00
[distutils]
index-servers = pypi
2021-08-21 17:49:56 +00:00
[reqman]
2021-08-30 04:35:00 +00:00
shitlist = pip,pkg_resources,setuptools
[flake8]
2021-08-30 07:06:21 +00:00
extend-ignore = [
E203,
E227,
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