2015-12-28 00:15:39 +00:00
|
|
|
[wheel]
|
|
|
|
universal = 1
|
|
|
|
|
2016-08-21 18:44:40 +00:00
|
|
|
[tool:pytest]
|
2015-09-19 19:29:23 +00:00
|
|
|
testpaths = tests
|
2016-07-25 15:26:07 +00:00
|
|
|
norecursedirs = .git testing_config
|
2015-12-28 05:14:35 +00:00
|
|
|
|
2016-02-14 00:56:32 +00:00
|
|
|
[flake8]
|
2017-11-20 01:39:24 +00:00
|
|
|
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
|
2016-11-27 22:33:30 +00:00
|
|
|
|
|
|
|
[isort]
|
|
|
|
# https://github.com/timothycrosley/isort
|
|
|
|
# https://github.com/timothycrosley/isort/wiki/isort-Settings
|
|
|
|
# splits long import on multiple lines indented by 4 spaces
|
|
|
|
multi_line_output = 4
|
|
|
|
indent = " "
|
|
|
|
# by default isort don't check module indexes
|
|
|
|
not_skip = __init__.py
|
|
|
|
# will group `import x` and `from x import` of the same module.
|
|
|
|
force_sort_within_sections = true
|
|
|
|
# typing is stdlib on py35 but 3rd party on py34, let it hang in between
|
|
|
|
known_inbetweens = typing
|
|
|
|
sections = FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|