Skip to content

Commit

Permalink
Tweaks to setup.cfg; moved egg-info into build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Tyler Downey committed Oct 25, 2017
1 parent 1e7c7ac commit 786e4ac
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 786e4ac

Please sign in to comment.