diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a601234 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +*~ +*.pyc +.*.sw? +**.log +/docs_build/ +/docs_output/ +/releng/ +/tests/*.img + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.testrepository/ + + +# Sphinx documentation +docs/_build/ + +# IDE +.idea/ + +# Build results +.tox |