github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/python/.gitignore (about) 1 # macOS 2 .DS_Store 3 .AppleDouble 4 .LSOverride 5 6 # Byte-compiled / optimized / DLL files 7 __pycache__/ 8 *.py[cod] 9 *$py.class 10 11 # C extensions 12 *.so 13 14 # Distribution / packaging 15 .Python 16 env/ 17 build/ 18 develop-eggs/ 19 dist/ 20 downloads/ 21 eggs/ 22 .eggs/ 23 lib/ 24 lib64/ 25 parts/ 26 sdist/ 27 var/ 28 wheels/ 29 *.egg-info/ 30 .installed.cfg 31 *.egg 32 33 # PyInstaller 34 # Usually these files are written by a python script from a template 35 # before PyInstaller builds the exe, so as to inject date/other infos into it. 36 *.manifest 37 *.spec 38 39 # Installer logs 40 pip-log.txt 41 pip-delete-this-directory.txt 42 43 # Unit test / coverage reports 44 htmlcov/ 45 .tox/ 46 .coverage 47 .coverage.* 48 .cache 49 nosetests.xml 50 coverage.xml 51 *.cover 52 .hypothesis/ 53 .pytest_cache/ 54 55 # Translations 56 *.mo 57 *.pot 58 59 # Django stuff: 60 *.log 61 local_settings.py 62 63 # Flask stuff: 64 instance/ 65 .webassets-cache 66 67 # Scrapy stuff: 68 .scrapy 69 70 # Sphinx documentation 71 docs/_build/ 72 73 # PyBuilder 74 target/ 75 76 # Jupyter Notebook 77 .ipynb_checkpoints 78 79 # pyenv 80 .python-version 81 82 # celery beat schedule file 83 celerybeat-schedule 84 85 # SageMath parsed files 86 *.sage.py 87 88 # dotenv 89 .env 90 91 # virtualenv 92 .venv 93 venv/ 94 ENV/ 95 96 # Spyder project settings 97 .spyderproject 98 .spyproject 99 100 # Rope project settings 101 .ropeproject 102 103 # mkdocs documentation 104 /site 105 106 # mypy 107 .mypy_cache/ 108 109 # IDE settings 110 .vscode/ 111 .idea/ 112 113 # mkdocs build dir 114 site/