Add a setup.cfg for python projects
This commit is contained in:
parent
cfedd826c9
commit
a2fb6fbdef
1 changed files with 20 additions and 0 deletions
20
setup.cfg
Normal file
20
setup.cfg
Normal file
|
@ -0,0 +1,20 @@
|
|||
[isort]
|
||||
line_length=100
|
||||
indent=2
|
||||
# 1/Vertical
|
||||
multi_line_output=3
|
||||
lines_after_imports=2
|
||||
default_section=THIRDPARTY
|
||||
known_localfolder=datalog
|
||||
sections=FUTURE,STDLIB,LOCALFOLDER,THIRDPARTY
|
||||
force_sort_within_sections=1
|
||||
force_alphabetical_sort_within_sections=1
|
||||
combine_as_imports=1
|
||||
|
||||
[distutils]
|
||||
index-servers = pypi
|
||||
|
||||
[pypi]
|
||||
repository = https://pypi.python.org/pypi
|
||||
username = $pypi_user
|
||||
password = $pypi_pass
|
Loading…
Reference in a new issue