diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-09-21 14:54:48 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-09-24 19:20:05 (GMT) |
commit | f15f8d5ccfd1e2da6eeff990adb8bc5db6b6bd8d (patch) | |
tree | 56b1474b492eb0e1a154229fb0cfb8c8063ad8c3 | |
parent | 6c3ed1fba9540c3cc59a2995102c671893d792a4 (diff) | |
download | SCons-f15f8d5ccfd1e2da6eeff990adb8bc5db6b6bd8d.zip SCons-f15f8d5ccfd1e2da6eeff990adb8bc5db6b6bd8d.tar.gz SCons-f15f8d5ccfd1e2da6eeff990adb8bc5db6b6bd8d.tar.bz2 |
Add gitignore file
-rw-r--r-- | .gitignore | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..50e717a --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/** +bootstrap/** +.idea/ + + +# Translations +*.mo +*.pot + + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + + + +# mypy +.mypy_cache/ + |