.gitignore (2688B)
1 # Created by https://www.toptal.com/developers/gitignore/api/macos,python 2 # Edit at https://www.toptal.com/developers/gitignore?templates=macos,python 3 4 ### macOS ### 5 # General 6 .DS_Store 7 .AppleDouble 8 .LSOverride 9 10 # Icon must end with two \r 11 Icon 12 13 # Thumbnails 14 ._* 15 16 # Files that might appear in the root of a volume 17 .DocumentRevisions-V100 18 .fseventsd 19 .Spotlight-V100 20 .TemporaryItems 21 .Trashes 22 .VolumeIcon.icns 23 .com.apple.timemachine.donotpresent 24 25 # Directories potentially created on remote AFP share 26 .AppleDB 27 .AppleDesktop 28 Network Trash Folder 29 Temporary Items 30 .apdisk 31 32 ### Python ### 33 # Byte-compiled / optimized / DLL files 34 __pycache__/ 35 *.py[cod] 36 *$py.class 37 38 # C extensions 39 *.so 40 41 # Distribution / packaging 42 .Python 43 build/ 44 develop-eggs/ 45 dist/ 46 downloads/ 47 eggs/ 48 .eggs/ 49 lib/ 50 lib64/ 51 parts/ 52 sdist/ 53 var/ 54 wheels/ 55 share/python-wheels/ 56 *.egg-info/ 57 .installed.cfg 58 *.egg 59 MANIFEST 60 61 # PyInstaller 62 # Usually these files are written by a python script from a template 63 # before PyInstaller builds the exe, so as to inject date/other infos into it. 64 *.manifest 65 *.spec 66 67 # Installer logs 68 pip-log.txt 69 pip-delete-this-directory.txt 70 71 # Unit test / coverage reports 72 htmlcov/ 73 .tox/ 74 .nox/ 75 .coverage 76 .coverage.* 77 .cache 78 nosetests.xml 79 coverage.xml 80 *.cover 81 *.py,cover 82 .hypothesis/ 83 .pytest_cache/ 84 cover/ 85 86 # Translations 87 *.mo 88 *.pot 89 90 # Django stuff: 91 *.log 92 local_settings.py 93 db.sqlite3 94 db.sqlite3-journal 95 96 # Flask stuff: 97 instance/ 98 .webassets-cache 99 100 # Scrapy stuff: 101 .scrapy 102 103 # Sphinx documentation 104 docs/_build/ 105 106 # PyBuilder 107 .pybuilder/ 108 target/ 109 110 # Jupyter Notebook 111 .ipynb_checkpoints 112 113 # IPython 114 profile_default/ 115 ipython_config.py 116 117 # pyenv 118 # For a library or package, you might want to ignore these files since the code is 119 # intended to run in multiple environments; otherwise, check them in: 120 # .python-version 121 122 # pipenv 123 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 124 # However, in case of collaboration, if having platform-specific dependencies or dependencies 125 # having no cross-platform support, pipenv may install dependencies that don't work, or not 126 # install all needed dependencies. 127 #Pipfile.lock 128 129 # PEP 582; used by e.g. github.com/David-OConnor/pyflow 130 __pypackages__/ 131 132 # Celery stuff 133 celerybeat-schedule 134 celerybeat.pid 135 136 # SageMath parsed files 137 *.sage.py 138 139 # Environments 140 .env 141 .venv 142 env/ 143 venv/ 144 ENV/ 145 env.bak/ 146 venv.bak/ 147 148 # Spyder project settings 149 .spyderproject 150 .spyproject 151 152 # Rope project settings 153 .ropeproject 154 155 # mkdocs documentation 156 /site 157 158 # mypy 159 .mypy_cache/ 160 .dmypy.json 161 dmypy.json 162 163 # Pyre type checker 164 .pyre/ 165 166 # pytype static type analyzer 167 .pytype/ 168 169 # Cython debug symbols 170 cython_debug/ 171 172 # End of https://www.toptal.com/developers/gitignore/api/macos,python