syntax: glob

###############################################
# Taken from Mercurial: the definitive guide

# Backup files left behind by the Emacs editor:
*~

# Lock files used by the Emacs editor:
.\#*

# Temporary files used by the vim editor:
.*.swp

# A hidden file created by the Mac OS X Finder:
.DS_Store

#
#################################################


# I want to avoid the inclusion of the old stuff
# in dist:
dist/*

# also precompiled files:
*.pyc

# the build directory should be skipped too:
build/**

# as well as the doc/_build dir:
docs/_build/**

# and package related stuff:
LiMonaDA.egg-info/**

# And of course, caches generated by the testing tools:
.cache/**

MANIFEST
.coverage
.eggs/**
.tox/**
.pytest_cache/**
.mypy_cache/**
