aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorMatthew Iversen <teh.ivo@gmail.com>2014-02-27 22:05:00 +1100
committerMatthew Iversen <teh.ivo@gmail.com>2014-02-27 22:05:00 +1100
commitcb97a1822468c719e348cfa7b4bca27ba6bbc2f1 (patch)
tree5525cf0e6ae7fb26d13035d88de8f156c9b9a5c0 /.gitignore
parentd8c8f7cde6b43d08f39cd11cd2e2dd3ed7feb5a5 (diff)
downloadcryptography-cb97a1822468c719e348cfa7b4bca27ba6bbc2f1.tar.gz
cryptography-cb97a1822468c719e348cfa7b4bca27ba6bbc2f1.tar.bz2
cryptography-cb97a1822468c719e348cfa7b4bca27ba6bbc2f1.zip
Ignore build/ folder and _cffi__*'s
Former can come from python setup.py bdist_wheel Latter can come from python setup.py develop
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore10
1 files changed, 6 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 3fe3c942..983c119c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,12 @@
-*.py[co]
__pycache__/
_build/
+build/
+dist/
+htmlcov/
+cryptography/_cffi__*
.tox/
.cache/
-*.egg-info/
.coverage
+*.egg-info/
*.egg
-dist/
-htmlcov/
+*.py[co]