From 9adb1886246381e577f1b138a89a766bac359507 Mon Sep 17 00:00:00 2001 From: dgelessus Date: Sun, 14 Jul 2019 02:10:59 +0200 Subject: [PATCH] Clean up .gitignore Removed a lot of unused/irrelevant entries (they were from GitHub's .gitignore template for Python projects) and kept only those that are actually needed/used. --- .gitignore | 36 +++++------------------------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index 7e19e4a..1cafdae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,8 @@ -# Byte-compiled / optimized / DLL files +# Python bytecode +*.py[co] __pycache__/ -*.py[cod] -*$py.class -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ +# setuptools *.egg-info/ -.installed.cfg -*.egg - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# virtualenv -.venv/ -venv/ -ENV/ +build/ +dist/