# .gitignore

# Sublime text project
FDApy.sublime-project
FDApy.sublime-workspace

# Visual code project
FDApy.code-workspace
.vscode

# Compiled python modules
*.pyc

# Setuptools distribution folder
/dist/
/build/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info

# Sublime text files
*.sublime-project
*.sublime-workspace

# Jupyter files
.ipynb_checkpoints/*
examples/.ipynb_checkpoints/*
FDApy/.ipynb_checkpoints/*
notebooks/*

# Some data files
*.rda
*.rds

# Tox
.tox/*

# Egg files
.egg/*
.eggs/*

# Build docs files
docs/_build/*
docs/_static/*
docs/_templates/*
docs/auto_examples/*
docs/backreferences/*

# Test files
.junit/*
.pytest_cache/*
tests/__pycache__/*

# Coverage files
htmlcov/*
.coverage

# Mac files
.DS_Store

