From 7640a212249e779b1afa073ffc3a06032820c6ac Mon Sep 17 00:00:00 2001 From: Mattia Montanari Date: Thu, 21 May 2020 15:45:25 +0100 Subject: [PATCH] Ignore cython generated files --- .gitignore | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/.gitignore b/.gitignore index 81f71dc..bff514c 100644 --- a/.gitignore +++ b/.gitignore @@ -175,3 +175,59 @@ sysinfo.txt # Office ~*.pptx + +#Cython https://github.com/cython/cython/blob/master/.gitignore +*.pyc +*.pyo +__pycache__ +*.so +*.o + +*.egg +*.egg-info +.*cache*/ +*venv*/ + +Cython/Compiler/*.c +Cython/Plex/*.c +Cython/Runtime/refnanny.c +Cython/Tempita/*.c +Cython/*.c +Cython/*.html +Cython/*/*.html + +Tools/*.elc +Demos/*.html +Demos/*/*.html + +/TEST_TMP/ +/build/ +/cython_build/ +/wheelhouse*/ +!tests/build/ +/dist/ +.gitrev +.coverage +*.patch +*.diff +*.orig +*.prof +*.rej +*.log +*.dep +*.swp +*~ +callgrind.out.* + +.ipynb_checkpoints +docs/build + +tags +TAGS +MANIFEST + +.tox + +# Jetbrains IDE project files +/.idea +/*.iml \ No newline at end of file