From daf4e3df76ccd53b27929d94bfc60770f7aea311 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Thu, 23 Sep 2021 10:11:05 -0700 Subject: [PATCH] add .gitignore --- .gitignore | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..bdd6f67a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# build artifacts + +.eggs/ +.mypy_cache +tango.egg-info/ +build/ +dist/ +pip-wheel-metadata/ + + +# dev tools + +.envrc +.python-version +.idea +.venv/ +.vscode/ +/*.iml + + +# jupyter notebooks + +.ipynb_checkpoints + + +# miscellaneous + +.cache/ +doc/_build/ +*.swp +.DS_Store + + +# python + +*.pyc +*.pyo +__pycache__ + + +# testing and continuous integration + +.coverage +.pytest_cache/ +.benchmarks + +# documentation build artifacts + +docs/build +site/