25 lines
310 B
Plaintext
25 lines
310 B
Plaintext
# Ignore Python bytecode cache files
|
|
__pycache__/
|
|
|
|
# Ignore pytest cache
|
|
.pytest_cache/
|
|
|
|
# Ignore virtual environment folder
|
|
venv/
|
|
envs/
|
|
|
|
# Ignore other common files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignore VSCode config
|
|
.vscode/
|
|
|
|
# site-packages.pth
|
|
site-packages.pth
|
|
|
|
# Ignore egg-info directory
|
|
src/freqsplit.egg-info/
|
|
|