From 5775985bbd15cd7191cb6295522cf614a606374c Mon Sep 17 00:00:00 2001 From: Chanaka De Silva Date: Fri, 14 Apr 2023 11:54:34 -0400 Subject: [PATCH] Adding prefect ignore file --- .prefectignore | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .prefectignore diff --git a/.prefectignore b/.prefectignore new file mode 100644 index 0000000..7ce5ed8 --- /dev/null +++ b/.prefectignore @@ -0,0 +1,41 @@ +# prefect artifacts +.prefectignore + +# python artifacts +__pycache__/ +*.py[cod] +*$py.class +*.egg-info/ +*.egg + +# Type checking artifacts +.mypy_cache/ +.dmypy.json +dmypy.json +.pyre/ + +# IPython +profile_default/ +ipython_config.py +*.ipynb_checkpoints/* + +# Environments +.python-version +.env +.venv +env/ +venv/ + +# MacOS +.DS_Store + +# Dask +dask-worker-space/ + +# Editors +.idea/ +.vscode/ + +# VCS +.git/ +.hg/