27c2296b2a
I had an .eggs/ directory created and .gitignore didn't pick it up. This commit modifies .gitignore to ignore all *.egg* things. Change-Id: I5168a1ee11ec03a693c16fe85fa3aa192cfbd69a
64 lines
565 B
Plaintext
64 lines
565 B
Plaintext
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Editor save files
|
|
*~
|
|
*.swo
|
|
*.swp
|
|
|
|
# Development databases
|
|
*.db
|
|
|
|
# Packages
|
|
*.egg*
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
bin
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
nosetests.xml
|
|
.coverage
|
|
.tox
|
|
.testrepository
|
|
.venv
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
# Complexity
|
|
output/*.html
|
|
output/*/index.html
|
|
|
|
# Sphinx
|
|
doc/build
|
|
|
|
# pbr generates these
|
|
AUTHORS
|
|
ChangeLog
|
|
|
|
# Local settings
|
|
etc/storyboard.conf
|
|
.vagrant
|
|
|
|
# IDE settings
|
|
.idea
|
|
*.iml
|