Files
jupyter_contrib_nbextensions/setup.cfg
T
Josh Barnes 199bfe27b3 Turn setup.py into a proper setuptools installer
* make a proper package, which can therefore be installed
 * include package data
 * don't modify config as part of pip install, only do it as part of explicit script
 * add setup.cfg to support universal wheel builds
2016-07-18 02:06:28 +01:00

13 lines
302 B
INI

[bdist_wheel]
universal = 1
[flake8]
ignore = 'I201,I101,D100,D101,D102,D103,D200,D201,D202,D203,D204,D205,D211,D400,D401,D403,N802,N806,'
[isort]
not_skip = __init__.py
multi_line_output = 5
include_trailing_comma = true
known_first_party = jupyter_contrib_nbextensions
default_section = THIRDPARTY