diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2019-05-14 12:47:30 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2019-05-14 12:48:58 +0200 |
commit | d6a0276a78ff99f1a0ee7faf421e048d5edbf693 (patch) | |
tree | 06600fd89a48e5f16a706b46e71f0752d1574911 /.gitignore | |
parent | [Plugins] Remove stray unneeded init files (diff) | |
download | deluge-d6a0276a78ff99f1a0ee7faf421e048d5edbf693.tar.xz deluge-d6a0276a78ff99f1a0ee7faf421e048d5edbf693.zip |
Update gitignore file
- pip install creates dist-info directories
- add __pycache__ for compelteness and other byte compiled file types.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 04aa1da7b..66826bbde 100644 --- a/.gitignore +++ b/.gitignore @@ -3,10 +3,12 @@ build .cache dist docs/source/modules/deluge*.rst -*egg-info +*.egg-info/ +*.dist-info/ *.egg *.log -*.pyc +__pycache__/ +*.py[cod] *.tar.* _trial_temp .tox/ |