diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-09-27 13:06:19 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-09-27 13:06:19 +0800 |
commit | fc9dff3dc6d728d521449024ec0353dce1b98d01 (patch) | |
tree | 62c9fea6409b0a0b8985a9c03a8df5cdb116f351 | |
parent | 9b9b0055c9b06a8c19262b85ac4cdd7989418e65 (diff) | |
download | fg21sim-fc9dff3dc6d728d521449024ec0353dce1b98d01.tar.bz2 |
Update .gitignore for Python package repo
-rw-r--r-- | .gitignore | 18 |
1 files changed, 13 insertions, 5 deletions
@@ -1,15 +1,23 @@ +# General things to ignore *~ *.swp *.un~ *_bak - -# emacs tmp files +# Emacs tmp files .#* -# python -*.pyc +build/ +dist/ + +# Python +*.py[cod] **/__pycache__ +*.egg +*.egg-info/ + +# IPython +**/.ipynb_checkpoints # C/C++ *.o - +*.so |