diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c60eab2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# 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 +coverage.xml +*,cover + +# Sphinx documentation +docs/_build/ + +# virtualenv +.venv/ +venv/ +ENV/ |