All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 2m30s
105 lines
1.3 KiB
Plaintext
105 lines
1.3 KiB
Plaintext
|
|
# ============================
|
|
# IDEs and Editors
|
|
# ============================
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# ============================
|
|
# Python
|
|
# ============================
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
pip-wheel-metadata/
|
|
pip-log.txt
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# ============================
|
|
# Logs / runtime / temp files
|
|
# ============================
|
|
*.log
|
|
*.pid
|
|
*.seed
|
|
*.out
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
*.DS_Store
|
|
Thumbs.db
|
|
|
|
# ============================
|
|
# System and OS junk
|
|
# ============================
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
.DS_Store
|
|
.Spotlight-V100
|
|
.Trashes
|
|
.idea_modules/
|
|
|
|
# ============================
|
|
# Custom project folders
|
|
# ============================
|
|
# Ignore project-specific compiled caches or outputs
|
|
mucapy/**/__pycache__/
|