From 6117f178227a650ce3f33932fe1640a83a4d39cd Mon Sep 17 00:00:00 2001 From: Phillip Baker Date: Sun, 11 Oct 2020 21:49:45 -0400 Subject: [PATCH] Switch to gitignore. --- .gitignore | 27 +++++++++++++++++++++++++++ .hgignore | 21 --------------------- 2 files changed, 27 insertions(+), 21 deletions(-) create mode 100644 .gitignore delete mode 100644 .hgignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..65caafc2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST diff --git a/.hgignore b/.hgignore deleted file mode 100644 index 78010360..00000000 --- a/.hgignore +++ /dev/null @@ -1,21 +0,0 @@ -syntax: regexp - -# 'setup.py' artifacts. -^build/ -^dist/ -\.egg$ -\.egg-info/ -\.gz$ -\.zip$ - -# Temporary or cache files & folders created by Python (e.g. __pycache__ -# folders) or our internal development tools. -^__ -/__ - -# Precompiled Python modules outside a __pycache__ folder. -\.pyc$ -\.pyo$ - -# Backup files. -\.bak$