1# HaikuPorter
2*.pyc
3*.pyo
4recipeCache/
5
6docs/source
7
8# Byte-compiled / optimized / DLL files
9__pycache__/
10*.py[cod]
11*$py.class
12
13# C extensions
14*.so
15
16# Distribution / packaging
17.Python
18build/
19develop-eggs/
20dist/
21downloads/
22eggs/
23.eggs/
24lib/
25lib64/
26parts/
27sdist/
28var/
29wheels/
30share/python-wheels/
31*.egg-info/
32.installed.cfg
33*.egg
34MANIFEST
35
36# PyInstaller
37#  Usually these files are written by a python script from a template
38#  before PyInstaller builds the exe, so as to inject date/other infos into it.
39*.manifest
40*.spec
41
42# Installer logs
43pip-log.txt
44pip-delete-this-directory.txt
45
46# Unit test / coverage reports
47htmlcov/
48.tox/
49.nox/
50.coverage
51.coverage.*
52.cache
53nosetests.xml
54coverage.xml
55*.cover
56*.py,cover
57.hypothesis/
58.pytest_cache/
59cover/
60
61# Translations
62*.mo
63*.pot
64
65# PyBuilder
66.pybuilder/
67target/
68
69# Jupyter Notebook
70.ipynb_checkpoints
71
72# IPython
73profile_default/
74ipython_config.py
75
76.pdm.toml
77
78# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
79__pypackages__/
80
81# Environments
82.env
83.venv
84env/
85venv*
86ENV/
87env.bak/
88venv.bak/
89
90# mkdocs documentation
91/site
92
93# mypy
94.mypy_cache/
95.dmypy.json
96dmypy.json
97
98# Cython debug symbols
99cython_debug/
100
101# PyCharm
102#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
103#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
104#  and can be added to the global gitignore or merged into this file.  For a more nuclear
105#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
106#.idea/.history
107
108# VSCode
109.history*
110.vscode*
111
112# Poetry
113poetry.lock
114
115