1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# crazy-compiler standard excludes
/projectlogo.png
/docs/_build/
*.[1-9]
# editor artefacts
*~
.#*
\#*#
.*.swp
# build artefacts
/.sconf_temp
/.sconsign.*
/config.h
/config.log
/config.status
/autom4te*.cache
/options.cache
/stamp-h1
# C, C++ build artefacts
*.[oa]
*.l[oa]
*.al
.libs
.deps
*.so
*.so.[0-9]*
*.rej
*.dll
.idea
# Python build artefacts
/build/
/dist/
/_venv/
/pip-selfcheck.json
/pyvenv.cfg
*.py[cod]
*.egg
*.egg-info
*.egg-link
/nosetests.xml
/.coverage
/.tox
/.achievements
/.installed.cfg
/.ropeproject
/.cache
# Mr Developer
/.mr.developer.cfg
/.project
/.pydevproject
# OS generated files
*.DS_[sS]Store*
ehthumbs.db
Icon?
Thumbs.db
*.pid
._.**~
|