forked from lfrerot/good_simulation_practices
144 lines
1.9 KiB
Plaintext
144 lines
1.9 KiB
Plaintext
# Created by https://www.toptal.com/developers/gitignore/api/python
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=python
|
|
|
|
# --------------------
|
|
# Python
|
|
# --------------------
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*$py.class
|
|
*.sage.py
|
|
|
|
# --------------------
|
|
# Packaging / builds
|
|
# --------------------
|
|
.Python
|
|
build/
|
|
dist/
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
share/python-wheels/
|
|
var/
|
|
wheels/
|
|
*.egg
|
|
*.egg-info/
|
|
.installed.cfg
|
|
MANIFEST
|
|
*.manifest
|
|
*.spec
|
|
|
|
# --------------------
|
|
# Logs / caches / temp
|
|
# --------------------
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
*.out
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.cache
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
*.cover
|
|
*.py,cover
|
|
cover/
|
|
htmlcov/
|
|
|
|
# --------------------
|
|
# Databases / translations
|
|
# --------------------
|
|
*.mo
|
|
*.pot
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# --------------------
|
|
# Framework / tool artifacts
|
|
# --------------------
|
|
local_settings.py
|
|
instance/
|
|
.webassets-cache
|
|
.scrapy
|
|
docs/_build/
|
|
.pybuilder/
|
|
target/
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
/site
|
|
|
|
# --------------------
|
|
# Virtual environments
|
|
# --------------------
|
|
JAX-venv/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# --------------------
|
|
# Python packaging helpers
|
|
# --------------------
|
|
.pdm.toml
|
|
poetry.toml
|
|
__pypackages__/
|
|
|
|
# --------------------
|
|
# Notebooks / REPL
|
|
# --------------------
|
|
.ipynb_checkpoints/
|
|
*.nb.py
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# --------------------
|
|
# Type checking / analysis
|
|
# --------------------
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.pytype/
|
|
.ruff_cache/
|
|
pyrightconfig.json
|
|
|
|
# --------------------
|
|
# Editors / IDEs
|
|
# --------------------
|
|
.vscode/
|
|
.history/
|
|
*.code-workspace
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
# --------------------
|
|
# Operating system
|
|
# --------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --------------------
|
|
# Editor temp files
|
|
# --------------------
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
|