From 786e4acbca60e7a91ff02aa5ea2fc7e894a340b5 Mon Sep 17 00:00:00 2001 From: Luke Tyler Downey Date: Wed, 25 Oct 2017 23:17:56 +0000 Subject: [PATCH] Tweaks to setup.cfg; moved egg-info into build dir --- setup.cfg | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 51afdbe..e86f329 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,17 +1,21 @@ # Project specific configuration used by the following tools: +# - setuptools # - nosetests # - flake8 -# + +[egg_info] +egg_base = build/egg + # nosetests only support setup.cfg. flake8 supports both setup.cfg and tox.ini. In # In order to not have too many files around, we'll use setup.cfg for now. [nosetests] # Turn this back on if the logs to too spammy. -#nocapture=1 +#nocapture = 1 [flake8] # The jenkins violations plugin can read the pylint format. -format=pylint +format = pylint # Measure cyclomatic complexity. # http://en.wikipedia.org/wiki/Cyclomatic_complexity#Limiting_complexity_during_development @@ -31,7 +35,7 @@ max-line-length = 120 # salt/var/cache/: # used by salt to cache all module files when run in non-root mode. This # includes upstream modules that are not complient with coding style. -exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,venv,get-pip.py,salt/var/cache/ +exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,venv,get-pip.py,salt/var/cache/ [pep8] max-line-length = 120