Add a testenv:venv environment to the tox.ini as a convenience for
things like sdist/wheel building or generating documentation. Also
add the autogenerated files from running setup.py sdist and
bdist_wheel commands to the .gitignore file.
*.egg-info/
.eggs/
.tox/
+AUTHORS
+ChangeLog
+build/
capture_*.log
data/
+dist/
mudpy/__pycache__/
mudpy/tests/__pycache__/
var/
-# Copyright (c) 2016 Jeremy Stanley <fungi@yuggoth.org>. Permission
+# Copyright (c) 2016-2017 Jeremy Stanley <fungi@yuggoth.org>. Permission
# to use, copy, modify, and distribute this software is granted under
# terms provided in the LICENSE file distributed with this software.
basepython=python3
commands = flake8 {posargs}
+[testenv:venv]
+commands = {posargs}
+
[flake8]
show-source = True
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build