/ .gitignore
.gitignore
1 # Using https://github.com/github/gitignore/blob/master/Python.gitignore 2 3 # Byte-compiled / optimized / DLL files 4 __pycache__/ 5 *.py[cod] 6 *$py.class 7 8 # C extensions 9 *.so 10 11 # Distribution / packaging 12 .Python 13 build/ 14 develop-eggs/ 15 dist/ 16 downloads/ 17 eggs/ 18 .eggs/ 19 lib/ 20 lib64/ 21 parts/ 22 sdist/ 23 var/ 24 wheels/ 25 share/python-wheels/ 26 *.egg-info/ 27 .installed.cfg 28 *.egg 29 MANIFEST 30 31 # PyInstaller 32 # Usually these files are written by a python script from a template 33 # before PyInstaller builds the exe, so as to inject date/other infos into it. 34 *.manifest 35 *.spec 36 37 # Installer logs 38 pip-log.txt 39 pip-delete-this-directory.txt 40 41 # Unit test / coverage reports 42 htmlcov/ 43 .tox/ 44 .nox/ 45 .coverage 46 .coverage.* 47 .cache 48 nosetests.xml 49 coverage.xml 50 *.cover 51 *.py,cover 52 .hypothesis/ 53 .pytest_cache/ 54 cover/ 55 56 # Translations 57 *.mo 58 *.pot 59 60 # Django stuff: 61 *.log 62 local_settings.py 63 db.sqlite3 64 db.sqlite3-journal 65 66 # Flask stuff: 67 instance/ 68 .webassets-cache 69 70 # Scrapy stuff: 71 .scrapy 72 73 # Sphinx documentation 74 docs/_build/ 75 docs/_generate/ 76 77 # PyBuilder 78 .pybuilder/ 79 target/ 80 81 # Jupyter Notebook 82 .ipynb_checkpoints 83 84 # IPython 85 profile_default/ 86 ipython_config.py 87 88 # pyenv 89 # For a library or package, you might want to ignore these files since the code is 90 # intended to run in multiple environments; otherwise, check them in: 91 # .python-version 92 93 # pipenv 94 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 95 # However, in case of collaboration, if having platform-specific dependencies or dependencies 96 # having no cross-platform support, pipenv may install dependencies that don't work, or not 97 # install all needed dependencies. 98 #Pipfile.lock 99 100 # PEP 582; used by e.g. github.com/David-OConnor/pyflow 101 __pypackages__/ 102 103 # Celery stuff 104 celerybeat-schedule 105 celerybeat.pid 106 107 # SageMath parsed files 108 *.sage.py 109 110 # Environments 111 .env 112 .venv 113 env/ 114 venv/ 115 ENV/ 116 env.bak/ 117 venv.bak/ 118 119 # Spyder project settings 120 .spyderproject 121 .spyproject 122 123 # Rope project settings 124 .ropeproject 125 126 # mkdocs documentation 127 /site 128 129 # mypy 130 .mypy_cache/ 131 .dmypy.json 132 dmypy.json 133 134 # Pyre type checker 135 .pyre/ 136 137 # pytype static type analyzer 138 .pytype/ 139 140 # Cython debug symbols 141 cython_debug/