From 19dc9eebd45efc01c14eec6b15fe2fb285f058b7 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 21 Dec 2020 23:51:28 -0500 Subject: Ignore setup.py outputs. This should allow packaging the program without littering scm with spurious changes. --- .gitignore | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 206e68b..a1b52c5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,8 @@ # when loaded. /.direnv/ -# Generated metadata created by `pip install`, `setup.py sdist`, and friends. -# Will be reconstituted from setup.py as needed. +# Generated metadata created by `pip install`, `python setup.py sdist`, and +# friends. Will be reconstituted from setup.py as needed. *.egg-info # Compiled Python bytecode. Will be regenerated on import, for the current @@ -13,3 +13,9 @@ # Dependencies installed via setup_requires; will be recreated from setuptools # as needed. /.eggs/ + +# Intermediate build artifacts generated by `python setup.py sdist`. +/build/ + +# Final outputs generated by `python setup.py bdist`. +/dist/ -- cgit v1.2.3