House keeping
* Added a bunch of things to .gitignore that might otherwise creep in during Python development. * This really should be merged ASAP. You'll thank me later ...
This commit is contained in:
parent
f1d8a7975b
commit
1b5719cd57
42
.gitignore
vendored
42
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
# GnuPG exclusions
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
/autom4te.cache
|
/autom4te.cache
|
||||||
/config.h.in
|
/config.h.in
|
||||||
@ -11,3 +12,44 @@ Makefile
|
|||||||
stamp-h1
|
stamp-h1
|
||||||
*.o
|
*.o
|
||||||
*.lo
|
*.lo
|
||||||
|
|
||||||
|
# Hidden files
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Byte compiled Python
|
||||||
|
*.py[cod]
|
||||||
|
__pycache__
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Packages
|
||||||
|
*.egg
|
||||||
|
*.egg-info
|
||||||
|
build
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
develop-eggs
|
||||||
|
.installed.cfg
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
.coverage
|
||||||
|
.tox
|
||||||
|
nosetests.xml
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
|
||||||
|
# Mr Developer
|
||||||
|
.mr.developer.cfg
|
||||||
|
.project
|
||||||
|
.pydevproject
|
||||||
|
|
||||||
|
# Assorted Apple crap
|
||||||
|
default.profraw
|
||||||
|
.DS_Store
|
||||||
|
._.DS_Store
|
||||||
|
default.profraw
|
Loading…
Reference in New Issue
Block a user