# Authors: The scikit-plots developers
# SPDX-License-Identifier: BSD-3-Clause

# git status                  # Shows the current status of all files
# git ls-files <file_name>    # Checks if config.json is tracked
# If the file is tracked, it will return the file path.
# If the file is not tracked, there will be no output.

# git clones, if needed
.git_clones/*
!.git_clones/.gitignore
!.git_clones/README.md

# Sphinx documentation
# 'matplotlib.sphinxext.plot_directive'
**result_images/
**docs/source/apis/*.rst
**_tags/
**auto_examples/
**jupyterlite_contents/
**generated/
**build/

# UI app
.gradio
# streamlit secret: .streamlit/secrets.toml or ~/.streamlit/secrets.toml
.streamlit/secrets.toml

# model registry
mlruns
mlruns.db
mlflow
mlflow.db
outputs

# models
**catboost_info

# Jupyter Notebook
**.ipynb_checkpoints

# scipy openblas
**.openblas

# enviroment
.env

# virtualenv
**.venv
venv/
ENV/

# pyenv
.python-version

# Distribution / packaging
.Python
env/
build/
builddir/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# C extensions
**.so

# Byte-compiled / optimized / DLL files
**__pycache__/
*.py[cod]
*$py.class

# PyTest
**.pytest_cache
**.mypy_cache
**.ruff_cache

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
oryx-build-commands.txt
pip-log.txt
pip-delete-this-directory.txt

# IDE/editor droppings
*.swp
*.swo
.vscode
.vscode/settings.json

# Spyder project settings
.spyderproject
.spyproject

# PyCharm
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/gradle.xml
.idea/libraries
.idea/mongoSettings.xml
*.iws
/out/
.idea_modules/
.idea

# JIRA plugin
atlassian-ide-plugin.xml

# OS droppings
**.DS_Store
**__MACOSX

# .Rhistory is a file created by R
**.Rhistory
