|
| 1 | +# Byte-compiled / optimized / DLL files |
| 2 | +__pycache__/ |
| 3 | +*.py[codz] |
| 4 | +*$py.class |
| 5 | + |
| 6 | +# C extensions |
| 7 | +*.so |
| 8 | + |
| 9 | +# Distribution / packaging |
| 10 | +.Python |
| 11 | +build/ |
| 12 | +develop-eggs/ |
| 13 | +dist/ |
| 14 | +downloads/ |
| 15 | +eggs/ |
| 16 | +.eggs/ |
| 17 | +lib/ |
| 18 | +lib64/ |
| 19 | +parts/ |
| 20 | +sdist/ |
| 21 | +var/ |
| 22 | +wheels/ |
| 23 | +share/python-wheels/ |
| 24 | +*.egg-info/ |
| 25 | +.installed.cfg |
| 26 | +*.egg |
| 27 | +MANIFEST |
| 28 | + |
| 29 | +# Installer logs |
| 30 | +pip-log.txt |
| 31 | +pip-delete-this-directory.txt |
| 32 | + |
| 33 | +# Unit test / coverage reports |
| 34 | +htmlcov/ |
| 35 | +.tox/ |
| 36 | +.nox/ |
| 37 | +.coverage |
| 38 | +.coverage.* |
| 39 | +.cache |
| 40 | +nosetests.xml |
| 41 | +coverage.xml |
| 42 | +*.cover |
| 43 | +*.py.cover |
| 44 | +.hypothesis/ |
| 45 | +.pytest_cache/ |
| 46 | +cover/ |
| 47 | + |
| 48 | +# uv |
| 49 | +uv.lock |
| 50 | + |
| 51 | +# pyenv |
| 52 | +# For a library or package, you might want to ignore these files since the code is |
| 53 | +# intended to run in multiple environments; otherwise, check them in: |
| 54 | +# .python-version |
| 55 | + |
| 56 | +# pipenv |
| 57 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 58 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 59 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 60 | +# install all needed dependencies. |
| 61 | +#Pipfile.lock |
| 62 | + |
| 63 | +# poetry |
| 64 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 65 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 66 | +# commonly ignored for libraries. |
| 67 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 68 | +#poetry.lock |
| 69 | +#poetry.toml |
| 70 | + |
| 71 | +# Environments |
| 72 | +.env |
| 73 | +.envrc |
| 74 | +.venv |
| 75 | +env/ |
| 76 | +venv/ |
| 77 | +ENV/ |
| 78 | +env.bak/ |
| 79 | +venv.bak/ |
| 80 | + |
| 81 | +# PyCharm |
| 82 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 83 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 84 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 85 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 86 | +#.idea/ |
| 87 | + |
| 88 | +# Visual Studio Code |
| 89 | +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore |
| 90 | +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore |
| 91 | +# and can be added to the global gitignore or merged into this file. However, if you prefer, |
| 92 | +# you could uncomment the following to ignore the entire vscode folder |
| 93 | +# .vscode/ |
0 commit comments